Физическое местоположение:
Windows 7/2008:
<SYSTEMDRIVE>\Users\<user>\Local Settings\Application Data\IsolatedStorage
Windows XP, Windows Server 2003:
<SYSTEMDRIVE>\Documents and Settings\<user>\Application Data\IsolatedStorage
Программный доступ (только проверитьналичие файла, другие примеры доступны по ссылке, приведенной в конце):
const string ISOLATED_FILE_NAME = "MyIsolatedFile.txt";
IsolatedStorageFile isoStore =
IsolatedStorageFile.GetStore( IsolatedStorageScope.User
| IsolatedStorageScope.Assembly, null, null );
string[] fileNames = isoStore.GetFileNames( ISOLATED_FILE_NAME );
foreach ( string file in fileNames )
{
if ( file == ISOLATED_FILE_NAME )
{
Debug.WriteLine("The file already exists!");
}
}
Извлечено из:
http://www.codeproject.com/KB/dotnet/IsolatedStorage.aspx