So I have a batch file which pipes some ftp commands into a host and I want to copy every file from my local directory with a certain extension to the host machine.
All that happens after i ftp is a directory change then
put *.ext
quit
It will put the first instance of any given file that it finds on the host but ignore all subsequent instances. Anyone know why?
nevermind, I found out that ‘put’ will only process a single file. The command I was looking for was ‘mput’!