Ejemplo n.º 1
0
 public override bool FileExists(string remotePath)
 {
     if (ExistsUsesListing)
     {
         return(FileExistsFromList(remotePath));
     }
     else
     {
         return(_client.FileExists(remotePath));
     }
 }
Ejemplo n.º 2
0
 public bool FileExists(string path)
 {
     return(_client.FileExists(path));
 }