I am trying to transfer multiple files through FTP from a local directory - C:\Users\Documents\FTP\*.* to the Domain.
I've approached like the below.
First I've created a batch script DISCH.BAT as below ::
open ftp://[email protected]/outbound/Pre/Release/
USERNAME
PASSWORD
binary
mput C:\Users\Documents\FTP\*.*
quit
I've created another batch file RUN.BAT as below :
ftp -i -s:C:\Users\Desktop\DISCH.bat
When I am running the RUN.BAT ie., the second one, nothing is happening. Can you please advice where I am going wrong.
Thanks in advance.
cmd.exe) so that you can spot any errors?RUN.BATpauseat the end of the batch file. But anyway, you first have to fix the problem I have shown in my answer.