Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Isolated Storage" alternative for Windows Phone 8.1 (not silverlight)

I've just upgrade to VS2013 update 2, and found out that WP8.1 now has 2 version: silverlight app ( upgraded from WP8 app) and "windows metro" app , is it true? that's a bit confused @@

And when i tested the new "windows metro" (or "universal" app), I see that this kind of framework doesn't use Isolated Storage ( System.IO.IsolatedStorage) like WP8 app, so any alternative for this ?

like image 677
user3448806 Avatar asked Jul 10 '14 14:07

user3448806


People also ask

Where is isolated storage?

Isolated storage generally uses one of three locations to read and write data: %LOCALAPPDATA%\IsolatedStorage\ : For example, C:\Users\<username>\AppData\Local\IsolatedStorage\ , for User scope. %APPDATA%\IsolatedStorage\ : For example, C:\Users\<username>\AppData\Roaming\IsolatedStorage\ , for User|Roaming scope.

What is IsolatedStorage?

Isolated storage is designed to prevent data corruption and access to application-specific data, while providing a standard data storage and retrieval system that's inaccessible to users, folders or applications. Isolated storage serves as a virtual file system managed by the . NET Common Language Runtime (CLR).


1 Answers

Use ApplicationData.LocalFolder (http://msdn.microsoft.com/en-us/library/windows/apps/windows.storage.applicationdata.localfolder)

like image 72
Igor Kulman Avatar answered Nov 20 '22 23:11

Igor Kulman