Click here to Skip to main content
Click here to Skip to main content

Download File Using C#

By , 30 May 2012
 

Introduction

This article describes code to download a file using C#...

Background

While browsing forums today I came across a question which asked for a solution to download a file from a web server programmatically. The solution is very simple and below is the code which achieves the goal. Here I am downloading a file asynchronously on Button Click.

Using the code

private void buttonDownloadFile_Click(object sender, EventArgs e)
{
    string url = @"http://www.thereforesystems.com/wp-content/uploads/2008/08/image35.png";
    // Create an instance of WebClient
    WebClient client = new WebClient();
    // Hookup DownloadFileCompleted Event
    client.DownloadFileCompleted +=    new AsyncCompletedEventHandler(client_DownloadFileCompleted);

    // Start the download and copy the file to c:\temp
    client.DownloadFileAsync(new Uri(url), @"c:\temp\image35.png");
 }

void client_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e)
{
    MessageBox.Show("File downloaded");
}

You can also download the file synchronously using WebClient.DownloadFile() method.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

tejasbhalani
Unknown
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 4memberali yeganeh31 Oct '12 - 9:51 
GeneralRe: My vote of 4memberMember 93199625 Feb '13 - 6:44 
GeneralMy vote of 4memberkishore doni28 Aug '12 - 0:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 30 May 2012
Article Copyright 2012 by tejasbhalani
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid