public string GetFullPath(string path)
 {
     return(fileSystemLock.ExecuteInLock(() => target.GetFullPath(path)));
 }
Exemplo n.º 2
0
 public IDirectoryInfo GetParent(string path)
 {
     return(fileSystemLock.ExecuteInLock(() => target.GetParent(path)));
 }
Exemplo n.º 3
0
 public IDriveInfo[] GetDrives()
 {
     return(fileSystemLock.ExecuteInLock(() => target.GetDrives()));
 }
Exemplo n.º 4
0
 public bool Exists(string path)
 {
     return(fileSystemLock.ExecuteInLock(() => target.Exists(path)));
 }