For a Windows Phone 8 application, I always heard that data can be stored in the "isolated storage" of the phone. After some research, I found two namespaces: LocalStorage (WinRT but supported too in WinPRT) and IsolatedStorage and they both seem to store data. This is what I understood so far :
- IsolatedStorage is a virtual file system so you cannot interact with user media for instance
- LocalStorage seems to have a real isolated storage as data is stored in a folder associated to the app
In the IsolatedStorage, can data from various apps mix ? I want a way to have a real safe isolated place to store data with no extenal interaction from other apps. This data could be settings preferences.
The problem is that I do not know very well those APIs and my testing programs around them lead to new questions. What is the real difference between those namespaces and which one could fulfill my need explained above ?