Hi, I'm trying to get a bunch of files off an ftp server. I connect fine:
batch script:
ftp -v -s:"C:\Documents and Settings\xxxx\Desktop\download.txt" xx.xx.xx.xx
and download.txt:
xxxx
xxxx
lcd "D:\Data\FileDump"
cd "backup"
mget *.*
It runs fine until it gets to the mget . and then it just outputs all the filenames with a question mark at the end into the console - I can't get it to copy any of them to the FileDump directory.
Any ideas?