【发布时间】:2020-03-06 06:20:22
【问题描述】:
我是 Flutter 的新手。我想将我的文档文件存储到 '/storage/emulated/0/Download/'。我有关于Unhandled Exception: FileSystemException: Cannot open file, path = '/storage/emulated/0/Download/file.pdf' (OS Error: Permission denied, errno = 13)的错误
这是我的代码:
void download() async {
http.Response response = await http.post(url, headers: {"Accept": "application/json", HttpHeaders.authorizationHeader: 'Bearer}});
File file = new File('/storage/emulated/0/Download/file.pdf');
await file.writeAsBytes(response.bodyBytes);
}
【问题讨论】:
标签: flutter