Where is .NET "Isolated Storage" stored?
Asked Answered
Y

9

37

Where would the physical files be?

Youlandayoulton answered 9/11, 2008 at 2:54 Comment(1)
I think it depends on which technology you are using. The location is different for WinRT apps, Silverlight app etc. Also it depends on OS, Roming profiles etc.Jeff
S
32

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.

Sheehan answered 9/11, 2008 at 2:56 Comment(2)
in case of ASP.NET applications it is in ` \Windows\ServiceProfiles\NetworkService\AppData\Local\ `Parachute
in my case on 7 it was %userprofile%\AppData\LocalLow\Microsoft\Silverlight\isChuppah
P
17

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

I didn't find them under "Microsoft"

Persuasion answered 5/3, 2012 at 2:23 Comment(2)
same here, for a winforms app I was developing in Windows 8, I found it under %LocalAppData%\IsolatedStorageBronchiectasis
I rejected the edit because it was an ungrammatical typo; feel free to make it againPersuasion
S
9
System.Diagnostics.Process.Start(
    Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + 
    "\\IsolatedStorage"
    );
Shrew answered 29/3, 2012 at 10:36 Comment(0)
A
4

On my XP workstation I found it under c:\Documents and Settings\\Local Settings\Application Data\Microsoft\Silverlight\is\XXXXXXXXXXXXX Where xxxxxxxx appears to be a random directory name. (under that if you wander around enough you should find the store for your particular app...)

Asturias answered 15/2, 2011 at 19:25 Comment(0)
E
4

I've also seen it under %ProgramData%\IsolatedStorage (so often C:\ProgramData\IsolatedStorage).

This particular case was a Windows Server 2008 with IIS site-related data.

Emboly answered 24/10, 2012 at 16:38 Comment(1)
This is where it was on Windows 10 for my ClickOnce WPF application.Devinna
J
4

I'm using Windows 8.1. On my PC its in C:\Users\mangesh\AppData\LocalLow\Microsoft\Silverlight\<followed by some random folder names>

In 'Silverlight' folder there are many random folders. You should find your files in one of these folders.

Jeff answered 1/4, 2014 at 18:22 Comment(0)
T
3

Location differs per IsolationStorage scope

Local user     [LocalApplicationData]\IsolatedStorage
Roaming user   [ApplicationData]\IsolatedStorage
Machine        [CommonApplicationData]\IsolatedStorage

The folders can be retrieved by Environment.GetFolderPath method.

Windows 2016 has it like this

Local user     C:\Users\<user>\AppData\Local\IsolatedStorage
Roaming user   C:\Users\<user>\AppData\Roaming\IsolatedStorage
Machine        C:\ProgramData\IsolatedStorage

More details can be found here.

Timi answered 8/6, 2018 at 15:16 Comment(0)
P
0

When accessed/created by a system account, I found the folder here:

C:\Windows\SysWOW64\config\systemprofile\AppData\Local\IsolatedStorage
Prompter answered 30/9, 2021 at 19:21 Comment(0)
B
-1

On Windows 11:

C:\Users\vboxuser\AppData\Local\IsolatedStorage\

Barsky answered 19/4 at 19:19 Comment(2)
This answer adds nothing new next to the already-existing answersRadmilla
This does not provide an answer to the question. Once you have sufficient reputation you will be able to comment on any post; instead, provide answers that don't require clarification from the asker. - From ReviewLave

© 2022 - 2024 — McMap. All rights reserved.