1

I will have to implement the possibility to upload multiple files (thousands) from a website. I think I will use a FTP client, any suggestion or other idea?

Thanks.

jmj
  • 237,923
  • 42
  • 401
  • 438
lula
  • 11
  • 1
  • 1
    Some more info would be helpful: what OS is the server on? Do you want to write something to do it automatically from time to time? – Richard H Feb 21 '11 at 16:05
  • 1
    Do you want to bulk-upload or synchronize files? That makes quite difference with regard to efficiency. – BalusC Feb 21 '11 at 16:24

1 Answers1

3

If you're going to be doing this on a regular basis, you might want to take a look at rsync. Unchanged files will not be transferred, saving you on time and bandwidth. You can also tunnel rsync through ssh if you need security.

Richard H
  • 38,037
  • 37
  • 111
  • 138