activation
Configuration
PGP
Robo-FTP
Robo-FTP Server

Frequently Asked Questions

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

Browse the FAQ list now

Getting Started

Browse these tutorials and sample scripts to get up and running with Robo-FTP in minutes.

Browse tutorials and samples now

Contact Technical Support

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

Contact Technical Support now

Professional Services

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

Contact Professional Services now

Enter search queries below or use the tag links to the right to browse the knowledge base by category (Show All Tags).


I get a syntax error when using wildcard characters in arguments to the PGPENCRYPT or PGPDECRYPT commands. I need to handle multiple files. What how do I handle this?

Wildcard characters are not permitted in PGPENCRYPT or PGPDECRYPT commands.

If you have multiple files or if you do not know the name of the files to encrypt or decrypt then you need to use the GETNEXTFILE command to identify the file(s) and then pass the file name in a variable to the PGPENCRYPT or PGPDECRYPT commands. Doing this inside of a loop will enable GETNEXTFILE to find all of the files that match a given wildcard pattern. Here is a simple example of how this is done:

:loop
GETNEXTFILE "*.txt" /timeout=5
IFERROR= $ERROR_WAIT_TIMED_OUT goto no_more_files
SET target = %nextfile + ".gpg"
PGPENCRYPT %nextfile target /email=xxxxxx
GOTO loop
:no_more_files

Tags: Wildcard, PGP, Robo-FTP