Open folder in Windows Explorer using Native File System API

1.6k Views Asked by At

Note: There are already some questions on how to open Folder on User device using Javascript. however, these questions were asked, before the Native File System API.

  1. How to open Window File Explorer from web browser using javascript
  2. Open local folder from link
  3. Open a folder in finder/explorer from a webpage?

My question is very specific, is there a way to open a folder in default file explore (ie Windows Explorer in Windows and Finder in Mac) using the new "Native File System API".

1

There are 1 best solutions below

3
On

This is how I am opening a directory and store the handlers in an array

 try {
        const directoryHandle = await window.showDirectoryPicker()
        const files = []

        for await (let [name, handle] of directoryHandle) {
          const file = await handle.getFile()

         // if you want to access the content of the file 
         const content = await file.text()
         
         files.push({
            name,
            handle,
            file,
            content,
          })
        }
        console.log('', files)

More to read https://wicg.github.io/file-system-access/#filesystemdirectoryhandle