我正在使用 Xamarin,根据之前的答案,这应该有效:

string path = Path.Combine(Android.OS.Environment.DirectoryDownloads, "families.txt");
File.WriteAllText(path, "Write this text into a file!");

但事实并非如此,我得到了未处理的异常。我已经设置了读取和写入外部存储的权限(即使这是内部存储)。

我也试过这个:
string content;
using (var streamReader = new StreamReader(@"file://" + path )) // with and without file://
{
    content = streamReader.ReadToEnd();
}

但我得到了同样的未处理异常。

更新: 路径是问题所在,因为我在这里得到了 else 部分:
Java.IO.File file = new Java.IO.File(path);
if (file.CanRead())
    testText.Text = "The file is there";
else
    testText.Text = "The file is NOT there\n" + path;

这很奇怪,因为路径似乎是正确的。异常(exception)情况:找不到路径的一部分:/Download/families.txt

UPDATE2: 在外部存储上,它可以工作,使用相同的代码......这可能是我的设备的问题吗?那太好了,因为我在 friend 的手机上测试了外部存储版本,但我的没有外部存储(OnePlus One),所以我仍在寻找解决方案(如果有的话)。

最佳答案

终于找到了解决办法。

var path = global::Android.OS.Environment.ExternalStorageDirectory.AbsolutePath;
var filename = Path.Combine(path.ToString(), "myfile.txt");

路径是问题所在,现在有了一个简单的流编写器,它就像魔术一样工作。
try
{
      using (var streamWriter = new StreamWriter(filename, true))
      {
             streamWriter.WriteLine("I am working!");
      }
}
catch { ... }

10-06 12:05