AlphaFS is a .NET library providing more complete Win32 file system functionality to the .NET platform than the standard System.IO classes. Features highlights: creating hardlinks, accessing hidden volumes, enumeration of volumes, transactional file operations and much more.
A simple library to get an abstraction to FileInfo and DirectoryInfo. As an addition you had for each object a service which you can use for better coding and handle accessing to the IO in a better way.
Dotnet has lots of useful apis for work with files and directories. However, using them it always feels like there are actually a few sets of overlapping tools.
* One is DirectoryInfo/FileInfo - strongly typed wrappers for directories and files. However, it lacks most of useful methods to...
More information