I am attempting to use chrome.apps for a program that needs to write multiple separate log files of data. The user then needs to be able to access these these log files outside of the app in their file system for post processing.
This will need to be done many times so minimum to no user interaction would be desired for file generation. While this is simple in any native program code, I've been finding this very difficult to do with chrome apps. E.g. can I use chrome apps to create "log_file.txt" & "log_file2.txt" without user interaction? Is there any way I can have the user just specify a directory then from my app, I would be able to create multiple files within that directory without user interaction? I've tried to do this in code but I need "entry" handles for the chrome.filesystem. The "getEntry" method requires an "entry" so it seems impossible to create new "entry"s such that I can write to new files. Any ideas would be appreciated!