Re: Keep Remote Directory Up to Date with Delete source file.
WinSCP does not have such functionality. The purpose of the "keepuptodate" is synchronizing the folders, while you are moving the files from local folder to the remote one.
You can loop your WinSCP move script, like this:
Though that's bit inefficient, as you will be authenticating over and over again.
More efficient would be to move to PowerShell and WinSCP .NET assembly.
https://winscp.net/eng/docs/library_powershell#net
You can loop your WinSCP move script, like this:
:retry
winscp.com /script=script.txt
goto retry
Though that's bit inefficient, as you will be authenticating over and over again.
More efficient would be to move to PowerShell and WinSCP .NET assembly.
https://winscp.net/eng/docs/library_powershell#net