views:

43

answers:

2

Is there a way to download the contents of a webpage directory like this without having to click on each folder and download each sourcefile one at a time.

+1  A: 

You want Gnu wget I think.

C. Ross
+1  A: 

If you have Linux/Cygwin, you could do wget -r, which is what I usually do to download entire websites.

If you're using Windows and don't want to install Cygwin you can try this out: http://gnuwin32.sourceforge.net/packages/wget.htm

Tinister