https://github.com/ju2pom/EverythingNetDemo
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.
The fluent API provides the following set of features:
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");