How can I get the size of a file using JavaScript (preferably using MooTools 1.2)?

link|improve this question

59% accept rate
5  
File size of what exactly? – Lachlan McDonald Apr 6 '10 at 12:41
feedback

2 Answers

If you're talking about the size of a file provided to an <input> tag of type "file", or a file whose path your web application happens to know, well, you can't except in some very particular cases (like a page loaded from a "file://" URL).

link|improve this answer
feedback

How can I get the size of a file using JavaScript (preferably using MooTools 1.2)?

Local or remote?

If it's remote, I would do an HTTP HEAD request and check the Content-Length field.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.