Synchronize single file with WinScp

1

I am trying to synchronize a single file with WinScp. But it is downloading that file every time the script runs. But I want it to download that file only when there is any update in the remote file.

Here are the commands I am using in my script

option include /home/username/test.csv
synchronize local c:\test /home/username -mirror

The username contains more than just test.csv but I only wants to synchronize test.csv. The script above downloads only test.csv, this is ok, But it downloads every time I run the script instead of downloading only when if there is any update in the remote file.

I tried to synchronize whole directory that is working perfectly fine but I needs it to work with the single file.

any idea?

Daric

Posted 2011-10-18T07:24:34.163

Reputation: 11

1-mirror don't needed here – Lazy Badger – 2011-10-18T14:51:47.740

option include test.csv – Lazy Badger – 2011-10-18T14:52:36.443

1When you say that the whole directory sync works fine, do you mean that test.csv is only synced when it is modified? – Paul – 2011-10-19T00:27:36.147

The option include cannot affect, if the file is synced or not when changed. So I do not believe that full dir sync works correctly, while single file dir does not. – Martin Prikryl – 2013-04-11T09:39:30.000

No answers