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