Synchronize -mirror took 3 runs to complete
I am synchronizing my test site which contains ~72GB. The script is show below. It took me 3 times to run to be able to fully download the files. On the first run, it downloaded 98%. On the second run, 99%, then on the third run, 100%. During download, it shows often that it's disconnected from the server or lost connection?
winscp.com /script="syncScript.txt"
syncScript.txt:
option batch continue
option confirm off
option reconnecttime 2
open ftp://.....
option transfer automatic
synchronize -mirror local "C:\Mirror_Site" "/"
close
exit
How can I improve it? Thanks.