up vote 15 down vote favorite
8
share [g+] share [fb]

I want to get the size of an http:/.../file before I download it. The file can be a webpage, image, or a media file. Can this be done with HTTP headers? How do I download just the file HTTP header?

Thanks!

link|improve this question
feedback

2 Answers

up vote 23 down vote accepted

Yes, assuming the HTTP server you're talking to supports/allows this:

System.Net.WebRequest req = System.Net.HttpWebRequest.Create("http://stackoverflow.com/robots.txt");
req.Method = "HEAD";
System.Net.WebResponse resp = req.GetResponse();
int ContentLength;
if(int.TryParse(resp.Headers.Get("Content-Length"), out ContentLength))
{ 
    //Do something useful with ContentLength here 
}

If using the HEAD method is not allowed, or the Content-Length header is not present in the server reply, the only way to determine the size of the content on the server is to download it. Since this is not particularly reliable, most servers will include this information.

link|improve this answer
feedback

Can this be done with HTTP headers?

Yes, this is the way to go. If the information is provided, it's in the header as the Content-Length. Note, however, that this is not necessarily the case.

Downloading only the header can be done using a HEAD request instead of GET. Maybe the following code helps:

HttpWebRequest req = (HttpWebRequest)WebRequest.Create("http://example.com/");
req.Method = "HEAD";
HttpWebResponse resp = (HttpWebResponse)(req.GetResponse());
int len = resp.ContentLength;

/EDIT: Completed the code. Notice the extra property for the content length on the HttpWebResponse object!

link|improve this answer
Won't resp.ContentLength above give you the length of the HEAD response, and not the length of the file you were interested in getting the sizeof ? – Adam Nofsinger Apr 19 '11 at 12:47
1  
@Adam No. The documentation says: “The ContentLength property contains the value of the Content-Length header returned with the response.” – Konrad Rudolph Apr 19 '11 at 12:57
1  
Correct you are, thanks Konrad. – Adam Nofsinger Apr 20 '11 at 12:15
feedback

Your Answer

 
or
required, but never shown