If I use JavaScript to create a file on a HTML5 Filesystem, can I find it on the real file system of my computer?
Asked
Active
Viewed 3,369 times
4
-
1duplicate http://stackoverflow.com/questions/11676584/where-does-persistent-file-system-storage-store-with-chrome/11677099#11677099 – abresas Jul 30 '12 at 10:45
-
1possible duplicate of [FileSystem API: Where are the files and folders located](http://stackoverflow.com/questions/8282087/filesystem-api-where-are-the-files-and-folders-located), [Where does PERSISTENT file system storage store with chrome?](http://stackoverflow.com/questions/11676584/where-does-persistent-file-system-storage-store-with-chrome) and [File browser access to Chrome's sandboxed filesystems](http://stackoverflow.com/questions/6810265/file-browser-access-to-chromes-sandboxed-filesystems). – Rob W Jul 30 '12 at 10:47
1 Answers
5
originally I think all file is stored on a virtual file system , so files can be protected. but it's not. for chrome, file is placed at "C:\Users\user name\AppData\Local\Google\Chrome\User Data\Default\File System" with obfuscated name on windows 7. so you can operate on it as local file.

xiemeilong
- 643
- 1
- 6
- 21
-
-
Confirm, you can get your file as raw txt file in the path described above. – SkyDancer Jul 05 '23 at 21:13