Represents a sandbox location to store application specific data in.
Assembly/Machine store for application-level data.
Assembly/User store for user-level data.
-
IsolatedStorageFile a = IsolatedStorageFile.GetMachineStoreForAssembly();
foreach (var f in a.GetFileNames("*"))
{
Console.WriteLine(f);
}