FTP Delete Folder
From UBot Studio
(Difference between revisions)
(Created page with "This command is an FTP command. This command will delete a folder and all it's contents at the specified server by the folder's remote name. To use, simply ...") |
|||
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> | ||
− | [[File: | + | 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 download folder", "ClassifiedFax", "C:\\Users\\Documents\\ClassifiedFax") | ||
+ | } | ||
+ | |||
+ | </pre> | ||
+ | |||
+ | [[File:ftpdef.jpg]] | ||
After the connection to the ftp server is established, the folder will be found and delete from the FTP server. | After the connection to the ftp server is established, the folder will be found and delete from the FTP server. |
Revision as of 18:36, 26 September 2013
This command is an FTP command.
This command will delete a folder and all it's contents at the specified server by the folder's remote name.
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 download folder", "ClassifiedFax", "C:\\Users\\Documents\\ClassifiedFax") }
After the connection to the ftp server is established, the folder will be found and delete from the FTP server.