Hi!
First of all I would like to thank the author, winscp is just awesome!
I'm running version 3.8.1 and is using the keepuptodate feature from a script to upload files from a directory that is updated every minute. It however jams a couple of times a week.
I run it from sync.bat:
@echo off
: START
"C:\Program Files\WinSCP3\WinSCP3.com" /script=uploaderscript.txt
GOTO START
using uploaderscript.txt:
# Automatically answer all prompts negatively not to stall the script on errors
option batch on
# Disable overwrite confirmations that conflict with the previous
option confirm off
# Connect
open [email protected]
# Force binary mode transfer
option transfer binary
# Keep remote directory updated
keepuptodate D:\Sync\Datafiles /home/user/data
# Disconnect
close
# Exit WinSCP
exit