I am using <input type="file">
to upload audio
files.
To do that I am using accept="audio/*"
. Because of this, file chooser of the browser shows only audio files by default, but there is an option 'All Files'
in that dialog box.
(note - Any solution in javascipt , jquery and AngularJs is also welcome)
How can I disable/remove all files option?
I believe that this is outside the scope of the browser, and is more up to the OS. However, despite whatever the case is, I don't think that this is something that you should mess with anyway.
accept
doesn't have the best support (although might not be an issue), but as you can see here: http://www.iana.org/assignments/media-types/media-types.xhtml#audio the shear number of allowed types probably falls outside of the scope of your application anyway. The best thing you should do is perform server side validation, using accept
purely as a client indicator.
Also, while it is an older answer, I think it is still relevant and valid: File input 'accept' attribute - is it useful?