Hello I just want to know that how to download a complete folder that contains images & html files from server. I am going to attach screen shot... Let's suppose I want to download any folder from attached page. HOW????? Waiting
Let's suppose i open a page www.site.com/main/ A list of folders appears as shown in screenshot... I just want to know the way to download specific folder...
you can use `wget` to achieve this, but note that the the server has to have directory listing so wget can recursively download stuff. something like the following should do the job: wget -r --no-parent http://the-website.net/somedir/ Code (markup): HTH