I have access to an FTP account where new files will be uploaded every day of different sizes from 5MB to 500MB. My requirement is the files have to be copied to my server every day. Can this be done?

link|improve this question

40% accept rate
"Copied to the server"? – Ignacio Vazquez-Abrams Jan 26 '11 at 11:45
How much access do you have? How is the server connected to the FTP server ? – Iain Jan 26 '11 at 11:47
feedback

3 Answers

Assuming your server is running linux, my choice would be to use ncftp & stick it in a crontab to run daily.

Much like this question here.

link|improve this answer
feedback

check out lftp

it can be easily scripted

link|improve this answer
feedback

My choice is to use wget in this way:

wget -r ftp://username:password@domain.com/directory/

I used it and it was okay.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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