35

物理文件在哪里?

4

8 回答 8

32

这取决于操作系统以及是否启用了漫游用户配置文件。

例如,在 XP 上,使用非漫游配置文件,位置是

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

在具有漫游配置文件存储的 Vista 上,

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

有关详细信息,请参阅隔离存储简介

于 2008-11-09T02:56:21.223 回答
17

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

我没有在“微软”下找到它们

于 2012-03-05T02:23:04.440 回答
9
System.Diagnostics.Process.Start(
    Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + 
    "\\IsolatedStorage"
    );
于 2012-03-29T10:36:09.097 回答
4

在我的 XP 工作站上,我在 c:\Documents and Settings\\Local Settings\Application Data\Microsoft\Silverlight\is\XXXXXXXXXXXXX 下找到了它,其中 xxxxxxxx 似乎是一个随机目录名称。(在此之下,如果您四处闲逛,您应该找到适合您特定应用的商店......)

于 2011-02-15T19:25:25.977 回答
4

我也在%ProgramData%\IsolatedStorage(经常是 C:\ProgramData\IsolatedStorage)下看到它。

这个特殊案例是带有 IIS 站点相关数据的 Windows Server 2008。

于 2012-10-24T16:38:36.237 回答
3

我正在使用 Windows 8.1。在我的电脑上C:\Users\mangesh\AppData\LocalLow\Microsoft\Silverlight\<followed by some random folder names>

在“Silverlight”文件夹中有许多随机文件夹。您应该在这些文件夹之一中找到您的文件。

于 2014-04-01T18:22:22.777 回答
3

位置因IsolationStorage范围而异

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

可以通过Environment.GetFolderPath方法检索文件夹。

Windows 2016 有这样的

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

更多细节可以在这里找到。

于 2018-06-08T15:16:11.830 回答
0

当由系统帐户访问/创建时,我在这里找到了该文件夹:

C:\Windows\SysWOW64\config\systemprofile\AppData\Local\IsolatedStorage
于 2021-09-30T19:21:56.347 回答