|
Yes, but I don't have time to create it. The idea, write a script that sends the file name to a text (like cmds.txt) file along with the PUT command. Then use another script to call the FTP.exe with the command line that calls the created txt file.
cmds.txt file gets created containing two lines:
PUT filename.txt
quit
Then use the FTP.exe command in a script:
ftp -v -i -s:cmds.txt -A ftpservername
|