Script get -delete not working
I'm trying to automate (via batch file) downloading and deleting all files from a remote directory. The files are just in the
WinSCP gives me this, and I add in the
Even without the delete switch, the
/ <root>
and are downloading to a local drive.
WinSCP gives me this, and I add in the
-delete
switch:
"C:\Program Files (x86)\WinSCP\WinSCP.com" ^ /log="C:\writable\path\to\log\WinSCP.log" /ini=nul ^ /command ^ "SFTP CONNECTION INFO HERE" ^ "cd /" ^ "lcd C:\working\Work" ^ "get -delete *" ^ "exit" set WINSCP_RESULT=%ERRORLEVEL% if %WINSCP_RESULT% equ 0 ( echo Success ) else ( echo Error ) exit /b %WINSCP_RESULT%
get
command does nothing. With it, it also does nothing, and does not download nor delete them. Can anyone help?