Loading the contents of a web directory?

If I have example.com/dir

and dir

is basically a folder on the server example.com

, how can I download the contents of the folder to my hard drive?

+1


a source to share


1 answer


Is it a web server and are you downloading it over the net? Then (with shell access) you can try:

$ wget --wait 2 -rkc --no-parent http://example.com/dir

      



Works with ftp too.

+4


a source







All Articles