如何在 C# 中将隔离内存转换为文件存储?

How to convert isolated memory into File Storage in C#?

是否有将独立内存转换为文件存储的方法。 我需要一种方法可以从独立存储中获取数据,然后将其存储到我已经在我的程序中定义的文件中。

以下示例展示了如何在 IsolatedStorage 中读取文本文件并将其写入特定位置,

string fileContent = string.Empty;

//Read file within IsolatedStorage
using (IsolatedStorageFile storage = IsolatedStorageFile.GetStore((IsolatedStorageScope.Domain | IsolatedStorageScope.Assembly | IsolatedStorageScope.User), null, null))
{
   using (StreamReader reader = new StreamReader(storage.OpenFile("ReadMe.txt", FileMode.Open)))
    {
       fileContent = reader.ReadToEnd();
    }
}

//Write to a textfile
File.WriteAllText(@"File path", fileContent);