Filter Extensions in HTML form upload [duplicate]

For specific formats like yours “.drp “. You can directly pass that in accept=”.drp” it will work for that.

But without ” * “

<input name="Upload Saved Replay" type="file" accept=".drp" />
<br/>

Leave a Comment