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!
|
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! | ||||
|
feedback
|
|
Yes, assuming the HTTP server you're talking to supports/allows this:
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. | |||
|
feedback
|
Yes, this is the way to go. If the information is provided, it's in the header as the Downloading only the header can be done using a
/EDIT: Completed the code. Notice the extra property for the content length on the | |||||||||||
feedback
|