I am having a Windows application where I want to download multiple files at a glance from the server.Will it be possible? Also I want to download the complete folder having subfolders or files. I am using c# as the programming language. Guide me for the same.Thanks

link|improve this question

62% accept rate
Have you tried anything? What are you stuck with? – Shoban Oct 11 '11 at 12:01
Yes it is possible. Download via what? HTTP? FTP? You need to give more info and you should show what you've tried so far. :) – AndyC Oct 11 '11 at 12:01
Are the files accessible using HTTP? Is folder listing allowed for that folder? – svick Oct 11 '11 at 12:02
You cannot pull multiple files from the same http response unless your server zip's them up or something. – asawyer Oct 11 '11 at 12:03
Right now my application is having a folder wherein there are multiple files in it and I want to download a folder or multiple files depending on the user selection so hows it possible?M not having any ftp server. – Stone Cold Oct 11 '11 at 12:17
feedback

2 Answers

up vote 2 down vote accepted

Check DownloadFile method from WebClient.

link|improve this answer
do you have any link which describes the above method? – Stone Cold Oct 11 '11 at 12:18
msdn.microsoft.com/en-us/library/… checkit out – Ravi Oct 11 '11 at 12:42
feedback

In this case WebClient is you're friend .

You can create many WebClient object and use WebClient.DownloadFile(); Method tu use or you can use WebClient.DownloadFileAsync(); than to create Directory's you can use Directory.CreateDirectory();

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.