如何从 IsolatedStorage 中某个文件的末尾删除 1 个字符?
我到目前为止的代码是:
var appStorage = IsolatedStorageFile.GetUserStoreForApplication();
using (var writer = new StreamWriter(appStorage.OpenFile("trailCount", FileMode.Truncate, FileAccess.Write)))
{
writer.Write(1);
}
但是它似乎不起作用。
谢谢