Exemple #1
0
 /// <summary>
 /// Creates a directory on the remote machine.
 /// </summary>
 /// <param name="path">The fully qualfied path of the directory.</param>
 /// <remarks>
 /// <note>
 /// It is not an error to call this method for a directory
 /// that already exists.
 /// </note>
 /// </remarks>
 public void CreateDirectory(string path)
 {
     lock (syncLock)
     {
         Verify();
         remote.CreateDirectory(path);
     }
 }