1

Hello, I'm looking for a script that can simply download a file using windows FTP. Can this be done in a batch file?

Thanks.

flag

1 Answer

1

Hi there, yes, windows has a built-in FTP app. I would use it to move small files, but nothing intensive.

Here you can schedule a task to run the batch file. It refers to the .txt that controls the FTP session:

ftpsite.bat

ftp -s:ftpsite.txt ftp.domain.com

ftpjobrun.txt

yourUserName
yourPassword
bin
cd /files
put file.zip
bye
link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.