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.

I'm developing an application for both mobile and desktop browsers. I'm wondering if there is anyway to detect if a browser supports file uploading. I'm looking specifically for feature detection and not browser detection. Is there any way to find out?

Server-side or client side is fine.

Thanks

share|improve this question

3 Answers

up vote 6 down vote accepted

client side javascript:

<input type="file" name="file" value="" id="fileUploadField1">      
<script type="text/javascript" charset="utf-8">
    if (document.getElementById('fileUploadField1').disabled)
        { document.write('your device does not allow uploads');     }
        else
        { document.write('your device does allow uploads');     }
</script>
share|improve this answer
Works great thanks! – sunjay03 Jul 20 '12 at 20:08
To see for yourself, go to this from your iDevice: jsfiddle.net/Q2b8E/embedded/result – sunjay03 Jul 20 '12 at 20:09
This approach will give false positives on quite a few devices - see the article linked to in Viljami's answer – codebox Jan 9 at 8:09
Thank you for the update. I see his blog was just updated yesterday also stating the Modernizr also uses his technique. – Steve Wasiura Jan 9 at 15:12

You might be interested to read this article about current input type=file support on mobile and how to detect it: http://viljamis.com/blog/2012/file-upload-support-on-mobile/ (the detection is currently tested to be working on ~120 different mobile browser/mobile OS combinations).

Basically, we are just using similar detection as Modernizr does, but use UA detection as a backup to filter out those mobile browsers that falsely report support (there really doesn’t seem to be any other way to detect it reliably than using these both, feature detection and browser detection).

share|improve this answer

You can use Modernizr framework with File API Extension. Give it a try.

UPDATE: here is an updated link to download File API Extension (Expand "Non-core detects" section)

share|improve this answer
Could you include in your answer some kind of example of how to use both Modernizer and the File API Extension? For example, once the extension adds the filereader test, how do I use it? – sunjay03 Feb 16 '12 at 2:32
I downvoted this in haste but after I researched a bit more I realized that it's a great answer, and stupid stackoverflow won't let me vote it back up. Sorry :( – Jon z Sep 19 '12 at 20:34
it's okay. 1 downvote doesn't hurt me. at least the answer can help you in some ways. – Shivan Raptor Sep 20 '12 at 2:07
@evanmcd , updated link for File API Extension link – Shivan Raptor Jan 31 at 6:13
1  
This is good advice, but i would think, you rather need the 'forms-fileinput' extension than the 'file-api' extension, if you just want to check, wether the device can handle file uploads. – ghost23 Mar 6 at 10:23

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.