All Questions
Tagged with file-system-access-api html5-filesystem
4 questions
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 ...
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?
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....
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 ...