Re: support: automate upload & deletion in GUI
You cannot do this in GUI.
With scripting it's easy. You basically want to infinitely loop an upload script with
With scripting it's easy. You basically want to infinitely loop an upload script with
-delete
option. A naive implementation would be like:
:loop
winscp.com /command ^
"open sftp://user:password@example.com/" ^
"put -delete C:\local\path\* /remote/path/" ^
"exit"
timeout /t 30
goto loop