Esempio n. 1
0
 /// <summary>
 /// Determines whether a folder exists on the remote machine.
 /// </summary>
 /// <param name="path">The fully qualified path to the folder.</param>
 /// <returns><c>true</c> if the folder exists.</returns>
 public bool FolderExists(string path)
 {
     lock (syncLock)
     {
         Verify();
         return(remote.FolderExists(path));
     }
 }