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.
| |||||||||
feedback
|
|
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:
HTML code:
| |||||||||||||||||
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:
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). | ||||
|
feedback
|
|
Technically you can specify the | |||||||
feedback
|
|
You can use the
example at http://www.jsfiddle.net/gaby/7br93/1/ | |||||||||||||||
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! | ||||
|
feedback
|