FTP Get Folders
From UBot Studio
(Difference between revisions)
(Created page with "This is an FTP Function This function will return a list of all folders in the specified location. The FTP Get Folders function can be used in any command i...") |
|||
Line 15: | Line 15: | ||
In the example above, the FTP Get Folders function has been placed inside the [[Add List to List]] command. The [[Add List to List]] is then placed inside the [[Connect to FTP Server]] command. | In the example above, the FTP Get Folders function has been placed inside the [[Add List to List]] command. The [[Add List to List]] is then placed inside the [[Connect to FTP Server]] command. | ||
− | [[File: | + | [[File:ftpgfol.jpg]] |
Running the will return a list of all the folders in the location specified in the FTP Get Folders function. | Running the will return a list of all the folders in the location specified in the FTP Get Folders function. |
Latest revision as of 17:29, 5 January 2017
This is an FTP Function
This function will return a list of all folders in the specified location. The FTP Get Folders function can be used in any command in UBot Studio, as along as the command is in the Connect to FTP Server command.
plugin command("FTPCommands.dll", "connect to ftp server", "FTP", "ftp.mysite.org", 21, "myusername", "p4ssw0rd", " /var/www/mysite.com/files") { add list to list(%mylist, $plugin function("FTPCommands.dll", "$ftp get folders", "files"), "Delete", "Global") }
In the example above, the FTP Get Folders function has been placed inside the Add List to List command. The Add List to List is then placed inside the Connect to FTP Server command.
Running the will return a list of all the folders in the location specified in the FTP Get Folders function.