Skip to content

robdplatt/CachedDirectory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CachedDirectory

Add caching to speed up Directory.GetFiles() and Directory.EnumerateFiles() when doing frequent/repeated operations.

An example might be repeated filesystem searches for various filenames within a short period of time.

Usage

  • Add a reference to this library
  • Define a new CacheOptions()
  • Override the .NET Directory.GetFiles() or Directory.EnumerateFiles() methods by including CacheOptions

Examples

TimeSpan expiration = new TimeSpan(0, 0, 30, 0);
CacheOptions cacheOptions = new CacheOptions(expiration);

var dllFiles = Directory.GetFiles("c:\windows", "*.dll", SearchOption.AllDirectories, cacheOptions);
var exeFiles = Directory.GetFiles("c:\windows", "*.exe", SearchOption.AllDirectories, cacheOptions);

The cache will be created during the first lookup. The second lookup will return without scanning the drive.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages