Batch Upload Overwriting Remote Files
I use the winscp.com 4.2.8 command line version to upload all the files in a folder to a remote location via SFTP, however it is overwriting the destination files even if I set the Confirm option to ON.
"c:\program files\winscp\winscp.com" /script=uploadscript.txt /log=log.txt
option batch on
option confirm on
open sftp://user:password@ftp_server:22
put -nopreservetime "C:\Twl_Get\rcvdata\*.txt"
close
option confirm off
option batch off
exit
I can get around this some by using the synchronize command, which will only upload files that are different, however our SFTP server does not support a client making changes to the timestamp, which is why I use the -nopreservetime flag in the PUT.
This flag does not exist for SYCNHRONIZE, and the -nopermissions doesn't stop an error from occuring, so I need to set BATCH CONTINUE.
"c:\program files\winscp\winscp.com" /script=uploadscript.txt /log=log.txt
option batch on
option confirm on
open sftp://user:password@ftp_server:22
put -nopreservetime "C:\Twl_Get\rcvdata\*.txt"
close
option confirm off
option batch off
exit
I can get around this some by using the synchronize command, which will only upload files that are different, however our SFTP server does not support a client making changes to the timestamp, which is why I use the -nopreservetime flag in the PUT.
This flag does not exist for SYCNHRONIZE, and the -nopermissions doesn't stop an error from occuring, so I need to set BATCH CONTINUE.