I made this way harder than it needed to be. All I needed was a script file to log in, get to the right folder on the FTP site, and issue the following command:
That command deletes the files off the FTP site as soon as it has completed downloading them.
Then I set up a batch file to run the script and move *.zip to folder "B", then a task scheduler item to call the batch file every 15 minutes. Works like a charm. Gave myself a pat on the back loud enough for my coworkers to laugh at me.
get -delete *.zip
That command deletes the files off the FTP site as soon as it has completed downloading them.
Then I set up a batch file to run the script and move *.zip to folder "B", then a task scheduler item to call the batch file every 15 minutes. Works like a charm. Gave myself a pat on the back loud enough for my coworkers to laugh at me.