0.2.2 • Published 16 days ago

show-open-file-picker v0.2.2

Weekly downloads
-
License
(MIT-0)
Repository
github
Last release
16 days ago

show-open-file-picker

A cross-browser ponyfill or polyfill for showOpenFilePicker().

The showOpenFilePicker() method shows a file picker that allows a user to select a file or multiple files and returns a handle for the file(s).

npm install show-open-file-picker

MDN Documentation

Usage

<script src="https://jsdelivr.com/package/npm/show-open-file-picker"></script>

<button id="button">Show Open File Picker</button>

<script>
button.onclick = () => {
  showOpenFilePicker({
    types: [
      {
        description: "Images",
        accept: {
          "image/*": [".png", ".gif", ".jpeg", ".jpg"],
        },
      },
    ],
    excludeAcceptAllOption: true,
    multiple: false,
  })
}
</script>
import { showOpenFilePicker } from 'show-open-file-picker'

button.onclick = () => {
  showOpenFilePicker({
    types: [
      {
        description: "Images",
        accept: {
          "image/*": [".png", ".gif", ".jpeg", ".jpg"],
        },
      },
    ],
    excludeAcceptAllOption: true,
    multiple: false,
  })
}