vote up 2 vote down star

Is it possible to download a file from a website in Windows Application form and put it into a certain directory?

Thanks!

~~Seth

flag
what transport? FTP? HTTP? – Mitch Wheat Feb 8 at 7:54
Mitch's comment is the most direct and most accurate answer, lol! – Cerebrus Feb 8 at 7:56
Unless you are new to .net, I would suggest searching the MSDN documentation would help. Look for things that you want to achieve, lok at what namespace this might fit in & see if there is a class which can do that :) – shahkalpesh Feb 8 at 8:08
@shahkalpesh - to heck with that... just google for: +C# +"download file" – Marc Gravell Feb 8 at 10:04
1  
The idea of this site is not to tell people to google for their answers, the idea of this site is for people to ask questions despite how stupid they are so that when people google in the future the answer will be right here. – Rayne Feb 8 at 18:39
show 1 more comment

3 Answers

vote up 5 vote down check

With the WebClient class:

using System.Net;
//...
WebClient Client = new WebClient ();
Client.DownloadFile("http://i.stackoverflow.com/Content/Img/stackoverflow-logo-250.png", @"C:\folder\stackoverflowlogo.png");
link|flag
Thank you, this worked exactly as I wanted! – S3THST4 Feb 8 at 8:03
vote up 7 vote down

Use WebClient.DownloadFile:

using (WebClient client = new WebClient())
{
    client.DownloadFile("http://csharpindepth.com/About.aspx", 
                        @"c:\Users\Jon\Test\foo.txt");
}
link|flag
SKEEEEEEEEEEEEEET! – FlySwat Feb 8 at 7:57
Don't forget IDisposable ;-p But (other than a "using") that is exactly what I came in to write... – Marc Gravell Feb 8 at 10:03
Ah, normal service by the pedants is resumed ;-p – Marc Gravell Feb 8 at 10:19
vote up 2 vote down

Sure, you just use a HttpWebRequest.

Once you have the HttpWebRequest set up, you can save the response stream to a file streamwriter (Either binarystream, or a textwriter depending on the mimetype.) and you have a file on your harddrive.

EDIT: Forgot about WebClient. That works good unless as long as you only need to use GET to retrieve your file. If the site requires you to POST information to it, you'll have to use a HttpWebRequest, so I'm leaving my answer up.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.