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://UID@XXX.XXXXXX.net/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.