tudou
tudou

Reputation: 515

Access local filesystem from web browser (react)

I am using this tool https://github.com/microsoft/VoTT. This tool is written in react/redux.

If the tool is running as web application, it does not have the option to access local file system (i.e., the computer that the browser is running). If the tool is running as an electron app, then the local system is accessible.

The question is more about how to allow the web app to access local file system.

Upvotes: 0

Views: 2629

Answers (1)

JorgenPhi
JorgenPhi

Reputation: 108

You've answered yourself in the question. :)

As it stands today (October 2020), there is not a standard API to access the file system from a web browser without using an extended "browser" (like Electron). There is however a W3C Draft to add this capability to web browsers.

Upvotes: 2

Related Questions