public override bool DirectoryExists(string path)
 {
     if (path == "")
     {
         return(false);
     }
     return(CRhoFile.isDirectoryExist(path));
 }
 public override bool DirectoryExists(string path)
 {
     return(CRhoFile.isDirectoryExist(path));
 }