Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any possible way to get the size of a file before uploading it through the browser?

I found Check file size before uploading file, but the script doesn't work with Internet Explorer 6, 7 or 8. I have not tested with IE 9. I'm looking for a script which will work properly with any browser.

share|improve this question
3  
Internet Explorer is a browser? I thought it was just a tool for downloading real browsers... – Robert Jun 3 '11 at 22:13
yeah, it's only a tool but some users use it... – T0m3kk Jun 3 '11 at 22:24

1 Answer

If you're willing to introduce a dependency on Flash, then you could use that to get the file size (and handle the upload too).

Flash supports file-selection via the FileReference class, which gives you access to some metadata including the file size.

With some help from the ExternalInterface class, you could call a JavaScript function and give it this information.

You could then upload the file from Flash instead of with the usual input element, if the file size is appropriate.

Check out YUI's uploader for a really easy-to-use and well-documented free component that handles all this for you (you only need to write a little JavaScript, and you can style the pre-built Flash component however you want).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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