Flutter - 在 Android 上保存对用户可见的本地文本文件

Flutter - Save a local text file visible for user on Android

我正在尝试在用户可以查看移动设备文件资源管理器应用程序的文件夹中创建一个文本文件,最好是在 Documents 文件夹中。

这是我到目前为止的内容(考虑到我们拥有所有必需的权限)

  final directory = Platform.isAndroid
      ? await getExternalStorageDirectory()
      : await getApplicationDocumentsDirectory();

  final filePath = '${directory!.path}/example.txt';

  File file = File(filePath);
  await file.create();
  await file.writeAsString('Some random text content');

之后我尝试在我的文件浏览器应用程序中找到这个新文件,但它似乎不存在并且看不到任何错误日志。

如果您想查看我编写的示例代码 -> https://github.com/felipeemidio/save-local-file-poc

到目前为止我尝试了什么?

尝试文件路径为

String filePath = '/storage/emulated/0/Downloads/example.text';

并且不要忘记在清单中添加权限

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />