Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is .NET "Isolated Storage" stored?

Where would the physical files be?

like image 237
Corey Trager Avatar asked Nov 09 '08 02:11

Corey Trager


People also ask

What is isolated storage in C#?

Isolated storage provides a virtual file system that is assigned to an assembly based on the evidence that the assembly presents. Isolated storage is a set of types and methods provided by the . NET Framework for local data storage operations.


2 Answers

It depends on the OS and whether or not roaming user profiles are enabled.

For example, on XP, with non-roaming profiles, the location is

<SYSTEMDRIVE>\Documents and Settings\<user>\Local Settings\Application Data\Microsoft\IsolatedStorage  

On Vista with roaming profile storage,

<SYSTEMDRIVE>\Users\<user>\AppData\Roaming\Microsoft\IsolatedStorage 

See an Introduction to Isolated Storage for more info.

like image 60
Blair Conrad Avatar answered Sep 25 '22 08:09

Blair Conrad


%LocalAppData%\IsolatedStorage / %AppData%\IsolatedStorage.

I didn't find them under "Microsoft"

like image 31
Mark Sowul Avatar answered Sep 24 '22 08:09

Mark Sowul