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