Frequently Asked Questions

The FAQ list is a great starting point for basic questions about what you can do with Robo-FTP.

Orange_arrowOrange_arrow Browse the FAQ list now

Knowledge Base

Our searchable knowledge base covers most of the common errors and implementation problems you are likely to encounter.

Orange_arrowOrange_arrow Search the Knowledge Base now

Contact Technical Support

If you can't find the answers you need online, get in touch with our Technical Support staff.

Orange_arrowOrange_arrow Contact Technical Support now

Professional Services

Need more than basic technical support? Our Professional Services team can help you deploy a complete solution.

Orange_arrowOrange_arrow Contact Professional Services now

Sample scripts are provided as-is with no warranty of fitness for a particular purpose. These scripts are solely intended to demonstrate techniques for accomplishing common tasks. Additional script logic and error-handling may need to be added to achieve the desired results in your specific environment.


Receive_and_Decrypt.s

Download

Log onto an FTP site, receive a specific file, decrypt it while renaming it to a .txt, and finally log off the server. This script also demonstrates some techniques for issuing error handling commands.


  1  ;;
  2  ;; Logon to FTP site
  3  ;;
  4  FTPLOGON "IP Address" /user=username /pw=password
  5  IFERROR= $ERROR_SUCCESS GOTO Operation1
  6  GOTO Disconnect
  7  ;;
  8  ;; Receive encrypted file from FTP site
  9  ;;
 10  :Operation1
 11  RCVFILE "encryptedfile.gpg"
 12  IFERROR= $ERROR_SUCCESS GOTO Operation2
 13  GOTO Disconnect
 14  ;;
 15  ;; Decrypt received file
 16  ;;
 17  :Operation2
 18  PGPDECRYPT "encryptedfile.gpg" "decryptedfile.txt" /pw=keypassphrase
 19  IFERROR= $ERROR_SUCCESS GOTO Disconnect
 20  ;;
 21  ;; Logoff to FTP Site
 22  ;;
 23  :Disconnect
 24  FTPLOGOFF

Browse complete list of scripts