FTP Upload File
From UBot Studio
(Difference between revisions)
(Created page with "This command is an FTP command. This command will upload a file from the local machine to an FTP server. To use, simply drag the command into the [[Connect ...") |
|||
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. | ||
− | [[File: | + | <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 upload file", "C:\\Users\\Documents", "Important.txt") | ||
+ | } | ||
+ | |||
+ | </pre> | ||
+ | |||
+ | [[File:ufftp.jpg]] | ||
After the connection is established, the file will be uploaded to the remote location specified on the FTP server. | After the connection is established, the file will be uploaded to the remote location specified on the FTP server. |
Latest revision as of 18:07, 26 September 2013
This command is an FTP command.
This command will upload a file from the local machine to an FTP server.
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 upload file", "C:\\Users\\Documents", "Important.txt") }
After the connection is established, the file will be uploaded to the remote location specified on the FTP server.