ftp automation

ScriptFTP

The professional tool to automate FTP, SFTP, FTPS and schedule FTP batch jobs

The forum is now read only. Please, go to the the main ScriptFTP website if you need help.
Need help writing a script? Have any question about ScriptFTP?
Is it possible to several wildard in SYNC syntax ?
I would like to use something like :

[scriptftp="multi_wildcard_synchronization.ftp"]SYNC("C:\","/",DOWNLOAD,"*.xls","*.txt")[/ScriptFTP]
Unfortunately, not. It is not possible. You have to call SYNC two times:

[scriptftp="multi_wildcard_synchronization.ftp"]SYNC("C:\","/",DOWNLOAD,"*.xls")
SYNC("C:\","/",DOWNLOAD,"*.txt")[/ScriptFTP]
Ok. Thanks !