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

Resume Support for File Downloads

By , 9 Jul 2012
 

As we all know, downloading a file from a website is done by the click on a link, but if we want to develop an application which downloads a list of files for us, we use a web request to download files. But due to network interruptions, downloading a file is a problem when the size of the file is large. Here we will learn how to download a file partially so that the we can download a big file easily in parts.

This process uses the HttpWebRequest and HttpWebResponse classes of .NET.

The below code uses the FileStream, HttpWebRequest, and HttpWebResponse classes and their methods. Before we create a request for the file we want to download, we should know if the file which we are going to download has already been downloaded previously or if this is the first request. If already downloaded, then we create an object of the FileStream class with Append mode otherwise we create an object of FileScream with Create mode. After that we are required to know how much content has been downloaded already. For this, we use the FileInfo class from which we check the length of the downloaded content. The most important point is that in partial downloading, the length is required to add to our HttpWebRequest by the method HttpWebRequest.AddRange(length) which downloads content after the existing length…

static void DownloadFile(string sSourceURL, string sDestinationPath)
{
    long iFileSize = 0;
    int iBufferSize = 1024;
    iBufferSize *= 1000;
    long iExistLen = 0;
    System.IO.FileStream saveFileStream;
    if (System.IO.File.Exists(sDestinationPath))
    {
        System.IO.FileInfo fINfo = 
           new System.IO.FileInfo(sDestinationPath);
        iExistLen = fINfo.Length;
    }
    if (iExistLen > 0)
        saveFileStream = new System.IO.FileStream(sDestinationPath, 
          System.IO.FileMode.Append, System.IO.FileAccess.Write, 
          System.IO.FileShare.ReadWrite);
    else
        saveFileStream = new System.IO.FileStream(sDestinationPath, 
          System.IO.FileMode.Create, System.IO.FileAccess.Write, 
          System.IO.FileShare.ReadWrite);
 
    System.Net.HttpWebRequest hwRq;
    System.Net.HttpWebResponse hwRes;
    hwRq = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(sSourceURL);
    hwRq.AddRange((int)iExistLen);
    System.IO.Stream smRespStream;
    hwRes = (System.Net.HttpWebResponse)hwRq.GetResponse();
    smRespStream = hwRes.GetResponseStream();
 
    iFileSize = hwRes.ContentLength;
 
    int iByteSize;
    byte[] downBuffer = new byte[iBufferSize];
 
    while ((iByteSize = smRespStream.Read(downBuffer, 0, downBuffer.Length)) > 0)
    {
        saveFileStream.Write(downBuffer, 0, iByteSize);
    }
}  

License

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

About the Author

Technoses
Software Developer (Senior) Super Eminent Softwares
India India
Member
Organisation
7 members

My name is Peeyush Shah and I am working with Microsoft.Net Framework at Jaipur, India with a Taxaction Software Development Company Named Professional Softec Pvt. Ltd.
 
My main focus is the development of online application.
We also develop custom software solutions for our customers and are able to support developers in using the following technologies, because we use them every day

- .NET Framework 2.0
- C#
- ASP.NET
- ASP.NET AJAX
- SQL Server 2005
- ADO .NET
- XML Webservices
- Payment systems

Feel free to take a look at the website and see Microsoft's new technologies in action

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   
GeneralConversion to VBmembersounddude00730 Oct '12 - 4:02 
QuestionResume download, file size larger than the orginalmemberMember 433659412 Oct '12 - 6:17 
Hi,
 
Great little app, but am I missing something?
 
I have a file, which is 8mb in size When I enter my parameters ie source and file location it starts to download which is great. How ever, when I close the app it stops downloading which is what I expect. When I start the application again, I would assume it would download the rest so, if I stopped at only 2mb and the started again I would get the other 6mb? So in total have 8 mb which is what the file size is.
 
Why when I resume the download does the file size increase. I've noticed this on a few examples on the web?
 
Thanks
GeneralMy vote of 5membersunilkpv15 Aug '12 - 23:58 
QuestionExcellent!memberYawar Abbas31 Jul '12 - 13:23 
QuestionVote of 4memberGanesanSenthilvel7 Jul '12 - 3:27 
GeneralMy vote of 5memberFarhan Ghumra27 Jun '12 - 3:24 
GeneralRe: My vote of 5groupTechnoses27 Jun '12 - 7:43 
GeneralMy vote of 4memberzhxhdean26 Jun '12 - 21:22 
GeneralRe: My vote of 4groupTechnoses27 Jun '12 - 7:44 
GeneralMy vote of 5memberCarsten V2.026 Jun '12 - 10:32 

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.130523.1 | Last Updated 9 Jul 2012
Article Copyright 2011 by Technoses
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid