Metro Style App HTML/JS writing local files
问题 I've built an app for Windows Store that writes to local files using Windows.Storage.FileIO (createFileAsync, readTextAsync and writeTextAsync). My plan is to use the file as a simple database (the data is simply JSON formatted user information). Is this a bad idea? Are the files written this way really persistent (or are they deleted when the app is updated)? Can the user themselves delete them (for example through deleting cookies/temp internet files or the likes)? I'm just wondering how