I'd like to restrict the type of file that can be chosen from the native OS file chooser when the user clicks the Browse button in the <input type="file"> element in HTML. I have a feeling it's impossible, but I'd like to know if there is a solution. I'd like to keep solely to HTML and JavaScript; no Flash please.

link|improve this question

Its easily possible with PHP, but I don't know if you can use that so I won't post the code. – Latox Dec 1 '10 at 20:48
I can, but I have a solution working with JavaScript - it removes the annoyance of uploading a file then getting the "Wrong file!" error. – JamWaffles Dec 1 '10 at 20:49
1  
i hate the "Wrong file!" error... – zzzzBov Dec 1 '10 at 20:57
feedback

5 Answers

up vote 9 down vote accepted

Yes, you are right. It's impossible with HTML. User will be able to pick whatever file he/she wants.

You could write a piece of JavaScript code to avoid submitting a file based on its extension. But keep in mind that this by no means will prevent a malicious user to submit any file he/she really wants to.

Something like:

function beforeSubmit()
{
    var fname = document.getElementById("ifile").value;
    // check if fname has the desired extension
    if (fname hasDesiredExtension) {
        return true;
    } else {
        return false;
    }
}

HTML code:

<form method="post" onsubmit="return beforeSubmit();">
    <input type="file" id="ifile" name="ifile"/>
</form>
link|improve this answer
Thank you :-) I actually already have that code to limit the type, but good suggestion! – JamWaffles Dec 1 '10 at 20:48
just incorrect. – Joe Hopfgartner Dec 1 '10 at 20:49
2  
there is a fully valid html attribute for that so it is possible. it is just not respected by browsers, but thats a standardization problem. as well as any stuff handled client side in unprotected markup cannot restricted anything java script is no solution. – Joe Hopfgartner Dec 1 '10 at 20:55
1  
Very good point. I will add a second PHP checker just in case. Can't be too careful! – JamWaffles Dec 1 '10 at 20:57
3  
@Joe: stop saying that my answer sucks! :-) Anyway, it's not a perfect solution. As I said in the beginning of it: "it's impossible" to do what OP wants. But you can have some degree of help for the user if you only let him/her choose files with certain extensions. REAL file type validation must be done server side. – Pablo Santa Cruz Dec 1 '10 at 21:05
show 5 more comments
feedback

There is the accept attribute for the input tag. However, it is not reliable in any way. Browsers most likely treat it as a "suggestion", meaning the user will, depending on the file manager as well, have a pre-selection that only displays the desired types. They can still choose "all files" and upload any file they want.

example:

<form>
  <input type="file" name="pic" id="pic" accept="image/gif, image/jpeg" />
</form>

read more in the html5 spec

Keep in mind that it is only to be used as a "help" for the user to find the right fiels. every user can send any request he/she wants to your server. you always have to validated everything serverside.

So the answer is: no you cannot restrict, but you can set a pre-selection but you cannot rely on it.

Alternatively or additionally you can do something similar by checking the filename (value of the input field) with JavaScript, but this is nonsense because it provides no protection and also does not ease the selection for the user. It only potentially tricks a webmaster into thinking he/she is protected and opens a security hole. It can be a pain in the ass for users that have alternative file extensions (for example jpeg instead of jpg), uppercase, or no file extensions whatsoever (as is common on linux systems).

link|improve this answer
feedback

Technically you can specify the accept attribute (alternative in html5) on the input element, but it's not properly supported.

link|improve this answer
just the only right answer – Joe Hopfgartner Dec 1 '10 at 20:57
W3Schools browser support fail! It's a shame really. It is also a security concern - people can hack past client side code and upload whatever they want. – JamWaffles Dec 1 '10 at 20:58
True, it's best not to use this for security, but it definitely helps usability on browsers that support it. Users are shown only the files that the site allows (not all the other junk they might have in the same folder) and they don't have to go through the whole upload process to be given an error, they will know straight away. Coders should use this. – Simon May 22 at 5:45
feedback

You can use the change event to monitor what the user selects and notify them at that point that the file is not acceptable. It does not limit the actual list of files displayed, but it is the closest you can do client-side, besides the poorly supported accept attribute.

var file = document.getElementById('someId');

file.onchange = function(e){
    var ext = this.value.match(/\.(.+)$/)[1];
    switch(ext)
    {
        case 'jpg':
        case 'bmp':
        case 'png':
        case 'tif':
            alert('allowed');
            break;
        default:
            alert('not allowed');
            this.value='';
    }
};

example at http://www.jsfiddle.net/gaby/7br93/1/

link|improve this answer
well have fun if your file is named "hello.jpeg" – Joe Hopfgartner Dec 1 '10 at 21:14
1  
@joe, it is an example... it can extend to whatever extensions you want to allow. – Gaby aka G. Petrioli Dec 1 '10 at 22:07
yeah, you can. but you DIDN'T! and maby somebody copied it already! and what about files with correct mime type but no extension? – Joe Hopfgartner Dec 1 '10 at 22:09
"sorry for the code to be bad, but its actually good because i could do better" – Joe Hopfgartner Dec 1 '10 at 22:09
5  
@Joe .. well .. i try to provide direction and a sound logic. Not fully implemented solutions for every case. I trust the viewers to use common sense when copy/pasting code from the web ;) – Gaby aka G. Petrioli Dec 1 '10 at 23:59
feedback

You could actually do it with javascript but remember js is client side, so you would actually be "warning users" what type of files they can upload, if you want to AVOID (restrict or limit as you said) certain type of files you MUST do it server side.

Look at this basic tut if you would like to get started with server side validation.

Good luck!

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.