| ZennoLab.CommandCenter Assembly > ZennoLab.CommandCenter Namespace > ZennoPoster Class : FtpCreateDirectory Method |
Type: System.String
The address of the FTP server.Type: System.Int32
The port of the FTP server.
Type: System.String
The FTP protocol. It can be "FTP", "sFTP", or "FTPs".
Type: System.String
The login of the FTP server.
Type: System.String
The password of the FTP server.
Type: System.String
The proxy string in format: login:pass@ip:port OR ip:port.
Type: System.String
The directory name.
Type: System.String
The address of the FTP server.Type: System.Int32
The port of the FTP server.
Type: System.String
The FTP protocol. It can be "FTP", "sFTP", or "FTPs".
Type: System.String
The login of the FTP server.
Type: System.String
The password of the FTP server.
Type: System.String
The proxy string in format: login:pass@ip:port OR ip:port.
Type: System.String
The directory name.
// create a new directory with name "newDirectory" on "host_name" ZennoPoster.FtpCreateDirectory("host_name", {port}, "protocol", "login", "password", "proxy", "newDirectory"); // create a new directory with name "NewDirectory\newDirectory" on "host_name" ZennoPoster.FtpCreateDirectory("host_name", {port}, "protocol", "login", "password", "proxy", "NewDirectory\\newDirectory"); // or this way ZennoPoster.FtpCreateDirectory("host_name", {port}, "protocol", "login", "password", "proxy", "NewDirectory/newDirectory");
// create a new directory with name "newDirectory" on "host_name" ZennoLab\CommandCenter\ZennoPoster::FtpCreateDirectory("host_name", {port}, "protocol", "login", "password", "proxy", "newDirectory"); // create a new directory with name "NewDirectory\newDirectory" on "host_name" ZennoLab\CommandCenter\ZennoPoster::FtpCreateDirectory("host_name", {port}, "protocol", "login", "password", "proxy", "NewDirectory\\newDirectory"); // or this way ZennoLab\CommandCenter\ZennoPoster::FtpCreateDirectory("host_name", {port}, "protocol", "login", "password", "proxy", "NewDirectory/newDirectory");
Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.