Esempio n. 1
0
 /// <summary>
 /// Deletes a file or directory on the remote machine.
 /// </summary>
 /// <param name="path">The fully qualified name of the file (including optional wildcards).</param>
 /// <remarks>
 /// This method supports wildcards and also implements the
 /// recursive deletion of directories.
 /// </remarks>
 public void DeleteFile(string path)
 {
     lock (syncLock)
     {
         Verify();
         remote.DeleteFile(path);
     }
 }