Synchronization Scripting not skipping existing files via FTP
Hey all,
I created a simple winscp script to synchornize local files from a machine to a remote FTP server.
The files get uploaded however every time the script re-runs it will reupload all the files all over again.
Alternatively I've tried using -criteria="size" however get the same behavior.
Are there any known limitations that would be causing this to happen?
I created a simple winscp script to synchornize local files from a machine to a remote FTP server.
option batch abort option confirm off # We tell it which FTP to connect to open mediasync # We tell it to synchronize local to Remote path synchronize -filemask="*.jpg" -criteria="time" -resumesupport="on" remote D:\FILES\Thumbnails /Thumbnails exit
The files get uploaded however every time the script re-runs it will reupload all the files all over again.
Alternatively I've tried using -criteria="size" however get the same behavior.
Are there any known limitations that would be causing this to happen?