javascript - Where do the files and folders created by a Chrome App reside in file system? -
first have i'm new google chrome app development. i'm using webkitrequestfilesystem
create folders , files dynamically app.
now can find folders , files in file system, or there other way see them?
it buried deep chrome profile, with file names , paths obfuscated , complex metadata dependencies.
something along lines (from root of profile folder):
storage/ext/your_app_id_here/def/file system/
the filesystem virtual: it's not expected map location within user's filesystem, , you're not expected able access outside chrome. fact it's stored collection of files correspond virtual files technical implementation detail.
if want interact real filesystem, need request access folder user using chrome.filesystem.chooseentry
api chrome apps instead of webkitrequestfilesystem
.
Comments
Post a Comment