How can I copy files from external server and transfer them to Filezilla
I am new to WinScp and I have a script that gets files from an external server and processes them and then puts them into my local drive . What I would like to do now is copy those files to my Filezilla by using a winScp script right now this is what I have
That code there processes the files and stores them in my local directory. What I want to do now is instead of processing them I want to copy the files and put them in Filezilla . The external server that the files are in have a lot of issues so copying would be a better way .
option batch abort option confirm off open address -passphrase="phrase" -hostkey="key" get -filemask="TimeStamp" Remote-Directory Local-Directory exit
That code there processes the files and stores them in my local directory. What I want to do now is instead of processing them I want to copy the files and put them in Filezilla . The external server that the files are in have a lot of issues so copying would be a better way .