08-26-2012 04:22 AM
I have a data file/database (~256k) that I would like to include with my application, but not as a resource file.
I know I can bundle it as a resource, but I want the ability to modify the file as the app is being used, so it can't be part of the cod file.
I am currently thinking of deploying the app without the datafile, then let the app download the data file either on first use or as a background thread (during which I may have to provide some silly message). I am hoping not to do either of these.
Instead, is there a way to deploy the app, with a file that will be written to the device memory (file:///store) as one (1) download? If not, what are some viable approaches to this problem.
Solved! Go to Solution.
08-26-2012 06:12 AM
Perhaps this:
Downloading it in the application is I think another approach (and one I have taken).
08-26-2012 05:58 PM
Interesting approach. Thanks for your response.