Created
August 4, 2015 15:45
-
-
Save borismod/2b6dcd8644299927dfd1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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