winscp.com running via a batch file doesn't retrieve file requested
I am new to this. I have run each of the steps in this .bat file individually in winscp.com and it works. However, when I run it from a .bat file, I can see something flash on the screen as if winscp is opening but the file is not returned. What am I doing wrong?
Here is the winscp.com using the /command in the .bat file:
winscp.com /command ^
"open ftp://anonymous@ftp.sec.gov/" ^
"cd /edgar/data/1618921" ^
"get 0001567619-16-001640.txt c:\Users\Laurel\Documents\testthis.txt" ^
"close" ^
"exit"
I had also tried running it as winscp.com /script but it behaved the same way.
The code in the .txt script file is this:
open ftp://anonymous@ftp.sec.gov/
option transfer binary
cd /edgar/data/1618921
get 0001567619-16-001640.txt c:\Users\Laurel\Documents\testthis.txt
close
exit
the code in the .bat file to run the script is this:
winscp.com /script="C:\Users\Laurel\Documents\scripttest.txt"
Thanks for you help!
Laurel C
Here is the winscp.com using the /command in the .bat file:
winscp.com /command ^
"open ftp://anonymous@ftp.sec.gov/" ^
"cd /edgar/data/1618921" ^
"get 0001567619-16-001640.txt c:\Users\Laurel\Documents\testthis.txt" ^
"close" ^
"exit"
I had also tried running it as winscp.com /script but it behaved the same way.
The code in the .txt script file is this:
open ftp://anonymous@ftp.sec.gov/
option transfer binary
cd /edgar/data/1618921
get 0001567619-16-001640.txt c:\Users\Laurel\Documents\testthis.txt
close
exit
the code in the .bat file to run the script is this:
winscp.com /script="C:\Users\Laurel\Documents\scripttest.txt"
Thanks for you help!
Laurel C