Hi,
How can i write a MS dos ftp batch file to:
- download files from the server to my local pc
- remove these files from the server after download
cheers!
Edit
ok so far i have...
Batch file:
ftp.exe -s:ftp.txt
FTP.txt:
open domain.com
usernamehere
passwordhere
cd /httpdocs/store/files
need get, list and delete commands here??
quit