I found apache-commons ftp retrieve multiple files - is there a way to download the complete folder structure in a given start directory from the ftp server?
Asked
Active
Viewed 270 times
1 Answers
0
I've done something similar with apache common ftpclient
it provides you with a single file download , a file info, a directory listing, you need to implement your own logic to traverse over subfiles and folder , decide whether subfile is a file or folder, add files to a download queue, and create the directory hierarchy, then start downloading from the queue. and you're done!
After that if you had issues, post your effort and SO members including me will be glad to help you :)

Ahmad Dwaik 'Warlock'
- 5,953
- 5
- 34
- 56