我正在使用Xamarin
以System.IO
格式保存文件,并且在Live Player上进行调试时,无法在设备的File-Explorer中找到它。
string path = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "test.txt");
File.WriteAllText(path, "test12345678");
它也不例外,之后我可以使用File.ReadAllText
我希望可以在资源管理器的“文档”文件夹中找到此文件,但是我在那里找不到它。
Xamarin
是否以某种方式从设备封装了它,还是将其隐藏在我看不见的某个隐藏目录中?