System.IO.IOException:路径共享违规

System.IO.IOException: Sharing violation on path

我收到以下共享违规:

System.IO.IOException: 'Sharing violation on path /data/user/0/android_game.android_game/files/GameSave.txt'

当使用 Visual Studio 尝试以下代码时 write/read Environment.SpecialFolder.Personal 目录中的文件

string FilePath = Environment.GetFolderPath(Environment.SpecialFolder.Personal);
FilePath = Path.Combine(FilePath, "GameSave.txt");

StreamWriter savefile = new StreamWriter(FilePath, true);
savefile.WriteLine("test");

StreamReader sr = new StreamReader(FilePath);
Console.WriteLine(sr.ReadLine());
sr.Close();

对于上下文,我只需要一个游戏的基本文本保存文件,我不想与其他应用共享。欢迎任何帮助,谢谢。

找到这个帖子后想通了:Sharing violation IOException while reading and writing to file C#

解决方案是在使用 savefile.Close()

读取文件之前关闭 Streamwriter