up vote 3 down vote favorite
1
share [g+] share [fb]

With HTML, how do I limit what kind of filetypes can be uploaded?

To easy the user experience, I want to limit file uploads to be only images (jpeg, gif, png).

<form method="post" action="..." enctype="multipart/form-data">
<label for="image">Photo</label>
<input name="image" type="file" />
</form>
link|improve this question

33% accept rate
Obviously, to properply secure this - I would check on the backend/server side. But all I'm looking for is a way to simply the user experience so that when they click "browse" to find the image they want to upload, they are not having to see all of those word documents, etc that are not applicable to upload – JacobT Oct 13 '09 at 17:51
I don't know that you can set a file mask. I've never seen it done successfully. – Robert K Oct 13 '09 at 17:54
feedback

6 Answers

HTML5 says <input type=file accept="image/*">. Of course, never trust client-side validation; always check again on the server-side.

link|improve this answer
feedback

Edited

If things were as they SHOULD be, you could do this via the "Accept" attribute.

http://www.webmasterworld.com/forum21/6310.htm

However, browsers pretty much ignore this, so this is irrelavant. The short answer is, i don't think there is a way to do it in HTML. You'd have to check it server-side instead.

The following older post has some information that could help you with alternatives.

http://stackoverflow.com/questions/181214/file-input-accept-attribute-is-it-useful

link|improve this answer
feedback

You can only do this securely on the server-side. Using the "accept" attribute is good, but must also be validated on the server side lest users be able to cURL to your script without that limitation.

I suggest that you: discard any non-image file, warn the user, and redisplay the form.

link|improve this answer
feedback

Ultimately, the filter that is displayed in the Browse window is set by the browser. You can specify all of the filters you want in the Accept attribute, but you have no guarantee that your user's browser will adhere to it.

Your best bet is to do some kind of filtering in the back end on the server.

link|improve this answer
feedback

Checkout a project called Uploadify. http://www.uploadify.com/

It's a Flash + jQuery based file uploader. This uses Flash's file selection dialog, which gives you the ability to filter file types, select multiple files at the same time, etc.

link|improve this answer
feedback

You can create a flash button and restrict extensions this way. I saw this on facebook in the feature to upload photos. The bad news are, you have to be an expert coder to do that, it require a lot of knowledge.

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.