/// <summary>
 /// Creates a directory on the FTP server.
 /// </summary>
 /// <param name="path">A <see cref="String"/> representing the full or relative path of the directory to create.</param>
 public void CreateDirectory(string path)
 {
     if (WININET.FtpCreateDirectory(_hConnect, path) == 0)
     {
         Error();
     }
 }