ilyfairy / EverythingNet

A .fluent NET library for the great Everything Search library from voidtools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build status Coverage Status NuGet

EverythingNet

Check demo app

https://github.com/ju2pom/EverythingNetDemo

What

EverythingNet is a C# library that wraps the great library from voidtools named Everything. This library lets you search for files and folders incredibly fast. For more information jump to the official page

EverythingNet provides a simple .NET API that wraps aforementioned library (which is coded in C). It doesn't rely on Windows Search at all but on a specific service which is much faster and lighter.

EverythingNet exposes a fluent API that ease access to specific search functions.

Features

The fluent API provides the following set of features:

  • thread safety
  • search for files only or folders only or both
  • name contains/start with/end with
  • search by extension or list of extensions
  • logical operators (Not, And, Or)
  • size search criteria
  • picture properties search criteria (format, dimensions)
  • audio search criteria (ID3 Tags)
  • dates search criteria (creation, modification, access, execution)
  • file content (maybe later)

How

The library exposes a fluent API that ease access to specific search functions. Here is a very simple example:

IEverything everything = new Everything();
var results = everything.Search().Name.Contains("temp");

Wiki

Wiki

About

A .fluent NET library for the great Everything Search library from voidtools

License:MIT License


Languages

Language:C# 100.0%