Exemplo n.º 1
0
 public void CreatePath(string path)
 {
     DirectoryBrowserOperations.CreatePath(path);
 }
Exemplo n.º 2
0
 public string ResolvePath(string path)
 {
     return(DirectoryBrowserOperations.ResolvePath(path));
 }
Exemplo n.º 3
0
 public string CombinePath(string path1, string path2)
 {
     return(DirectoryBrowserOperations.CombinePath(path1, path2));
 }
Exemplo n.º 4
0
 public bool IsLogicalDrive(string path)
 {
     return(DirectoryBrowserOperations.IsLogicalDrive(path));
 }
Exemplo n.º 5
0
 public IEnumerable <string> LoadDirectories(string rootFolder, bool showHidden)
 {
     return(DirectoryBrowserOperations.LoadDirectories(rootFolder, showHidden));
 }
Exemplo n.º 6
0
 public string CombinePath(string path1, string path2) => DirectoryBrowserOperations.CombinePath(path1, path2);
Exemplo n.º 7
0
 public string ResolvePath(string path) => DirectoryBrowserOperations.ResolvePath(path);
Exemplo n.º 8
0
 public bool IsLogicalDrive(string path) => DirectoryBrowserOperations.IsLogicalDrive(path);