I'm aware of the JS Filesystem API for reading/writing files in the Chrome sandbox.
But I cannot find a W3C standard that does the same, is there a cross-browser way to read/write files on major browsers?
Thanks
It is recommended to use the Indexed Database API (large data, and a-synchronous) as the File System API is discontinued. Web Storage API can also work but it's synchronous and for small data.