StaticVoid IO Extentions - Nuget

I was recently doing some file and folder manipulation using System.IO and wished I had some kind of fluent interface for traversing files and folders. So I wrote a basic one.

This means that you can do things like this:

directory.Parents("trunk").Directories(d => d.Name == "MyProject").Files(f => f.Name.EndsWith(".sln"));
comments powered by Disqus