how to get file size of all linked files in a web page at once? without downloading them.
like pdf, wmv, mp3 , quicktime etc.
|
how to get file size of all linked files in a web page at once? without downloading them. like pdf, wmv, mp3 , quicktime etc.
| ||||
feedback
|
|
For both of these Methods, I am assuming you want to measure the size of a page as well as all the pages it links to, with all their resources and not a single page with its resources. Easiest way is probably to use something like HTTrack and point it to your site, then look at all the files it pulled and get their size - not that accurate as it adds a header and footer, but the easiest way I can think of if you do not have access to the files. If you do have access, just select them manually and look at properties. | |||||||||
feedback
|
|
Get the "View Dependencies" add-on for Firefox. Load the webpage in Firefox. Go to "View Dependencies" under the Tools menu. The window that opens will list all the files that were loaded in order to show the page, along with their sizes in KB. | |||||||
feedback
|
|
You can call the HTTP HEAD request for each item. That will give you the size in the returned header without getting the file itself. | |||
|
feedback
|
|
Copy and paste the files/direct links to files into a downloader and check the total size.. | |||
|
feedback
|
|
The Get File Size add-on can tell you the size for each individual file, but not at the same time. How it works is that it requests the content length header of the remote file. If the server is configured properly, it will tell you the size without you having to download it:
| ||||
|
feedback
|