FTP Create Folder
From UBot Studio
(Difference between revisions)
(Created page with "This command is an FTP command. This command will create a folder to an FTP server when the Remote Folder name is provided. To use, simply drag the command ...") |
|||
Line 5: | Line 5: | ||
To use, simply drag the command into the [[Connect to FTP Server]] command. | To use, simply drag the command into the [[Connect to FTP Server]] command. | ||
+ | <pre> | ||
+ | plugin command("FTPCommands.dll", "connect to ftp server", "FTP", "ftp.mysite.org", 21, "myusername", "password1234", "/var/www/mysite.com/public_html/") { | ||
+ | plugin command("FTPCommands.dll", "ftp create folder", "MyImportantFiles") | ||
+ | } | ||
− | [[File: | + | </pre> |
+ | |||
+ | |||
+ | [[File:cfftp.jpg]] | ||
After the connection is established, the folder will be created at the remote path specified on the FTP server. | After the connection is established, the folder will be created at the remote path specified on the FTP server. |
Latest revision as of 18:01, 26 September 2013
This command is an FTP command.
This command will create a folder to an FTP server when the Remote Folder name is provided.
To use, simply drag the command into the Connect to FTP Server command.
plugin command("FTPCommands.dll", "connect to ftp server", "FTP", "ftp.mysite.org", 21, "myusername", "password1234", "/var/www/mysite.com/public_html/") { plugin command("FTPCommands.dll", "ftp create folder", "MyImportantFiles") }
After the connection is established, the folder will be created at the remote path specified on the FTP server.