I'm trying to get a file to copy to my web space through FTP using a batch file, I have managed to get this to work by manually typing this into the command prompt, however when this is put into a batch file it doesn't work:
What changes do I need to do to get it to work?
Code:
ftp
open
hosting2.123-reg.co.uk
(username)
(password)
cd test
put c:\test.txt
What changes do I need to do to get it to work?