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?
HI I would like to know how can I specify 8 file to sync. The directory that I want to sync has over 300 individual files and I only need 8 of them. Im trying to achieve something like this so scriptftp will ignore the remaing 200+ files.
Code: Select all# Warning. This command is not correct. SYNC("C:\accounting","/accounting",DOWNLOAD,SUBDIRS,"*a1.xls","*a2.xls","*a3.xls")  

Thanks
Hello,

Why not this?
Code: Select allSYNC("C:\accounting","/accounting",DOWNLOAD,SUBDIRS,"*a1.xls") SYNC("C:\accounting","/accounting",DOWNLOAD,SUBDIRS,"*a2.xls") SYNC("C:\accounting","/accounting",DOWNLOAD,SUBDIRS,"*a3.xls")