示例#1
0
 /// <summary>
 /// Deletes a directory on the remote machine, recursively deleting any files
 /// and subdirectories contained within.
 /// </summary>
 /// <param name="path">The fully qualfied name of the directory.</param>
 public void DeleteDirectory(string path)
 {
     lock (syncLock)
     {
         Verify();
         remote.DeleteDirectory(path);
     }
 }