Creating a remote directory |
You can create a remote directory on the server using the MakeDir method. The directory created is relative to your current remote directory.
Example
[C#]
// create directory named images
myFtp.MakeDir("images");
[Visual Basic]
' create directory named images
myFtp.MakeDir("images")
See also