예제 #1
0
 public static IFile GetFile([NotNull] string path)
 {
     return(AdapterHelper.Adapt(new FileInfo(path)));
 }
예제 #2
0
 public static IDirectory GetDirectory([NotNull] string path)
 {
     return(AdapterHelper.Adapt(new DirectoryInfo(path)));
 }
예제 #3
0
 public IFileSystemInfo GetFileSystemInfo(string path)
 {
     return(AdapterHelper.GetFileSystemInfo(path));
 }
예제 #4
0
 public virtual IDirectory GetDirectory(string path)
 {
     return(AdapterHelper.GetDirectory(path));
 }
예제 #5
0
 public virtual IFile GetFile(string path)
 {
     return(AdapterHelper.GetFile(path));
 }