Skip to content

Instantly share code, notes, and snippets.

@borismod
Created August 4, 2015 15:45
Show Gist options
  • Select an option

  • Save borismod/2b6dcd8644299927dfd1 to your computer and use it in GitHub Desktop.

Select an option

Save borismod/2b6dcd8644299927dfd1 to your computer and use it in GitHub Desktop.
namespace System.IO.Abstractions
{
public interface IFileSystem
{
FileBase File { get; }
DirectoryBase Directory { get; }
IFileInfoFactory FileInfo { get; }
PathBase Path { get; }
IDirectoryInfoFactory DirectoryInfo { get; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment