Skip to main content

All Questions

Filter by
Sorted by
Tagged with
1 vote
0 answers
172 views

non-deprecated replacement for FileSystemEntry.toURL()

I am planning a project where I will need to be able to access files from the File and Directory Entries API through the browser through URLs with actual file paths (unlike blobs) and the ...
luek baja's user avatar
  • 1,674
4 votes
1 answer
2k views

Is there a way to programmatically set the default directory with File System Access API

Is there a way to set a defined directory path programmatically instead of showing the file explorer with .showDirectoryPicker() for the user to select the actual path?
gby's user avatar
  • 151
0 votes
1 answer
412 views

Read ANSI files in Web file-system-access API

I am trying to get files using file-system-access API and it works good using this code: function Process_Files(files) { [].map.call(files, async function (file, i) { if (isDataFile(file....
Christian's user avatar
  • 194
8 votes
2 answers
5k views

Access all files within a given folder (The File System Access API)

Can I use the File System Access API (https://web.dev/file-system-access/) to create something like a file explorer within a website (react). I plan to make a simple online file explorer that lets you ...
Akshay K Nair's user avatar