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.


build_file_name.s

Download

This script demonstrates some of Robo-FTP's string manipulation commands.


  1  SET date = %date
  2  SETLEFT month = date 2
  3  SETMID day = date 2 4
  4  SETRIGHT temp = date 2
  5  SET year = "20"
  6  SET year &= temp
  7  SET filedate = month
  8  SET filedate &= day
  9  SET filedate &= year
 10  DISPLAY filedate
 11  SET filename = "TestFile_"
 12  SET filename &= filedate
 13  SET filename &= ".txt"
 14  DISPLAY filename

Browse complete list of scripts