So I want to limit the users options for upload to a list of specific file extensions. This is purely to make it easier for the user, I am already limiting filetype upload on the server also.
I have a list of extensions but not a list of mime types. As the accepted extensions can potentially change, and I don't see any completely reliable way to dynamically calculate their mime types(and would rather avoid this); I would like to instead just feed the extensions into the 'accept' attribute of a <input type="file"> element.
I have noticed this works exactly as intended on Chrome, but not in FF or IE10 (in these browsers it seems to just fallback to all files).
I realise this isn't part of the standard but is there any way to accept extensions instead of mimetypes in the 'accept' attribute that is (modern browser) cross-browser friendly. My test case used <input type="file" accept=".doc,.docx,.bad" />
If this is not possible, what is the best approach? note: I have no garuntee my servers registry will contain all the mimetypes of the extensions I use, and because this list can be very long it is rather impractical (and will be my last resort) to manually keep a list up to date of mimetypes.