Good evening.
Can You help me please with some batch file?
I have an ftp, where in root directory located few randomly named zip archives.
So i need to download that archives to local D:\temp
I know, how to do it via http://ftp.exe, but only for one file, witch name i know:
file: save.bat
ftp -s:1.txt
file: 1.txt
open myftp.com
123login
321pass
prompt
binary
hash
get file.zip D:\test\12.zip
bye
Maybe u can tell me how to download all * zip archives on ftp in loop?
Thanks!
You can use the
mgetcommand to download multiple files throughftp. This also supports wildcards.