When open file dialog is opened, the o" /> When open file dialog is opened, the o" /> When open file dialog is opened, the o"/>

HTML input type="file" show multiple file extension option

416 Views Asked by At

I have a file upload on my page like below:

<input type="file" id="myFile" name="myFile" accept=".xls, .xlsx"/>

When open file dialog is opened, the option is like this Custom files

What I want is like this. This is an example from Ms. Excel program, and I want the open dialog file selection to be like this or at least similar to this Multiple file options

How can I achieve that?

Thank you.

1

There are 1 best solutions below

0
Robin Hood On

i think gives you all custom file options

<input type="file" id="myFile" name="myFile" accept="application/*"/>