我的应用程序的数据存储在本地 JSON 中。我最初将其存储为字符串应用程序设置,但这并没有提供足够的空间。因此,我正在更新我的应用程序以从本地存储中的 JSON 文件读取/写入。
当用户与我的应用程序交互时,我的应用程序会在不同时间读取和写入 JSON,并且在读取或写入文件时经常出现此错误:
System.IO.FileLoadException:“该进程无法访问该文件,因为它正被另一个进程使用。”
以下是涉及的方法:
private static async Task<StorageFile> GetOrCreateJsonFile()
{
bool test = File.Exists(ApplicationData.Current.LocalFolder.Path + @"\" + jsonFileName);
if(test)
return await ApplicationData.Current.LocalFolder.GetFileAsync(jsonFileName);
else
return await ApplicationData.Current.LocalFolder.CreateFileAsync(jsonFileName);
}
private static async void StoreJsonFile(string json)
{
StorageFile jsonFile = await GetOrCreateJsonFile();
await FileIO.WriteTextAsync(jsonFile, json);
}
private static async Task<string> GetJsonFile()
{
StorageFile jsonFile = await GetOrCreateJsonFile();
return await FileIO.ReadTextAsync(jsonFile);
}
有时错误在 上WriteTextAsync
,有时在 上ReadTextAsync
。似乎没有发生错误的特定点,只是似乎随机发生。请让我知道是否有其他方法可以避免错误。