How to change directory on both sides of the get command?
Hey everyone,
I'm trying to make a batch file that will connect to a sftp site, go into a folder, and copy the files there, which will then be copied into a directory located in a completely different area.
However when I tried to do this I wasn't able to get back out of the directory I pulled the file from.
Here is what I have been trying to use so far:
Any help would be appreciated greatly, thanks in advance.
I'm trying to make a batch file that will connect to a sftp site, go into a folder, and copy the files there, which will then be copied into a directory located in a completely different area.
However when I tried to do this I wasn't able to get back out of the directory I pulled the file from.
Here is what I have been trying to use so far:
winscp.exe /console /command "option batch abort" "option confirm off" "open sftp://PlaceHolderName:PlaceHolderPassword@PlaceHolder.com" "cd /Path/Where/TheFile/Is/" "get TheFile.txt /Path/I/Need/To/Put/The/File/TheFileCorrectlyPlaced.txt" "exit"
Any help would be appreciated greatly, thanks in advance.