I'm currently developing a chrome app and need to access local files and directorys. My question is when I create a file or folder where are they located? The extension is currently in my home directory and the created files aren't in the extension directory.
Asked
Active
Viewed 4,024 times
1 Answers
3
The file system API is "virtual" in that you cannot store the files entirely literally on the client's computer. You can only really access them via JavaScript.
Nevertheless, they are stored with different filenames in several directories (having non-intuitive names) in:
%appdata%\Local\Google\Chrome\User Data\Default\File System
Where %appdata%
is e.g. C:\Users\xxx\AppData
(on Vista).

pimvdb
- 151,816
- 78
- 307
- 352
-
3Thanks for your answer. I'm using Ubuntu and there the path is: /home/username/.config/google-chrome/Default – Dominic Nov 26 '11 at 23:02
-
@DominicBartl I know it's been a while, but that path doesn't appear to be used anymore. – Cerin Jul 18 '20 at 03:34