How to use chrome api extension file system?

Hi, as an example I want to read

c:/x.txt 

like text

and write? is there any example about chrome.fileSystem?

Note. I do not want to request the file path to the user

+7
source share
1 answer

Already answered the Access to HTML file system Chrome Extension , I think. Please note that chrome.fileSystem exists only in applications and not in extensions.

To just read the files, try asking for file:///* host permission .

+3
source

All Articles