我实际上只是想将文件写入android设备-简单的东西。
但是我正在使用的设备没有“存储/仿真/ 0”,因此我试图通过将文件保存到documents文件夹来解决该问题。
这里是我的方法:
public string WriteToFile(string fileContents, string fileName)
{
var documents = Path.Combine(Android.OS.Environment.DirectoryDocuments, WriteToFileFolderName);
var filePath = documents + fileName;
if (!Directory.Exists(documents))
{
Directory.CreateDirectory(documents);
}
File.WriteAllText(filePath, fileContents);
return filePath;
}
但是我收到错误消息“ / documents missing”。
非常沮丧