Is it possible to download all the files from a directory listing? Eg., the following link leads to a listing.

http://www.arthika.net/1234TB/new/Kuruvi/

Please point me to some related API's to download all the files from such listings (if possible). Thanks

link|improve this question

67% accept rate
feedback

3 Answers

up vote 4 down vote accepted
wget -r -l 1 http://url.example.com/directory/
link|improve this answer
feedback

Do you mean programmatically? For starters, look at wget and a batch script.

link|improve this answer
feedback

Assuming you mean programmatically from Java you can look at the java.net.URL.connect method. Here is an example of using it from the Java Tutorial, along with an example of reading from a URL.

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.