get -delete returns Unknown switch 'delete'
I'm wanting to download files and delete when successful. I should be able to use:
mget -delete *.csv
but I get "Unknown switch 'delete' when I try this.
If I go to the command line manually, del (or delete) in fact does not exist, but 'rm' does delete the file. So I tried:
mget -rm *.csv
but that doesn't work either.
I could do:
mget *.csv
rm *.csv
but how do I know (from the script) that the download was successful before I delete the files on the server?
(I'm using winscp.com v5.7.4 /script=)
mget -delete *.csv
but I get "Unknown switch 'delete' when I try this.
If I go to the command line manually, del (or delete) in fact does not exist, but 'rm' does delete the file. So I tried:
mget -rm *.csv
but that doesn't work either.
I could do:
mget *.csv
rm *.csv
but how do I know (from the script) that the download was successful before I delete the files on the server?
(I'm using winscp.com v5.7.4 /script=)