A script to download, rename, and move files
Up until now, I have been been using WS_FTP but would like to switch to WinSCP.
I'm trying to convert this WS_FTP script into WinSCP:
I've been able to convert it partially:
But that only downloads the files. How can I get it to rename and move the original files while also leaving them in-place on the FTP site?
Please note, I posted this question subsequently to StackOverflow as the issue is timely.
Thank you!
I'm trying to convert this WS_FTP script into WinSCP:
"C:\Program Files (x86)\Ipswitch\WS_FTP 12\wsftppro.exe" -s "sftp://USERNAME:PASSWORD@ftpus.pointclickcare.com/USERNAME/logs/*.sqb" -d "local:C:\PccDataRelay\LogDownloads\" -rename tx_[yyyy]-[mm]-[dd]_[hh]-[tt]-[ss]_[OnlyName].[OnlyExt] -move "/USERNAME/logs/transferred/"
cd C:\PccDataRelay\TestDownloads "C:\Program Files (x86)\WinSCP\winscp.com" /ini=nul /log=C:\PccDataRelay\AuditLogs\incremental_download.log /command ^ "open sftp://USERNAME:PASSWORD@ftpus.pointclickcare.com/USERNAME/logs/ -hostkey=""ssh-rsa 2048 xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx""" ^ "get /USERNAME/logs/*.sqb" ^ "exit"
Please note, I posted this question subsequently to StackOverflow as the issue is timely.
Thank you!