繁体   English   中英

如何在 flutter 中的 iOS 中下载和打开文件?

[英]How to Download and open file in iOS in flutter?

我想下载一个文件然后打开它。 它工作正常: Android iOS 模拟器 但在 iPhone 上我得到了异常

文件系统异常:无法创建文件,路径 = 'var/mobile/Container/Data/Application/{ID}/Documents2743.pdf'(操作系统错误:不允许操作,errno = 1)

我已经写了下面的代码。

PermissionStatus _permissionStatus = await PermissionHandler()
    .checkPermissionStatus(PermissionGroup.storage);
if (_permissionStatus == PermissionStatus.granted) {
  FileUtils.mkdir(['/sdcard/h8subscriber/']);
  FileUtils.mkdir(['/sdcard/h8subscriber/documents/']);
  if (Platform.isAndroid) {
    dirloc = "/sdcard/h8subscriber/documents/";
  } else {
    dirloc = (await getApplicationDocumentsDirectory()).path;
  }

  Dio dio = Dio();
  var randid = random.nextInt(10000);
  try {
    FileUtils.mkdir([dirloc]);
    await dio.download(fileURL, dirloc + randid.toString() + ".pdf",
        onReceiveProgress: (receivedBytes, totalBytes) {
      setState(() {
        downloading = true;
        progress =
            ((receivedBytes / totalBytes) * 100).toStringAsFixed(0) + "%";
      });
      print("downloading");
    });
  } catch (e) {
    print(e);
  }

  setState(() {
    downloading = false;
    progress = "";
    path = dirloc + randid.toString() + ".pdf";
    _isLoading = false;
    showAlertOk(
        'Download Successfull',
        'Your downloaded file is here..\n'
            '$path',
        path);
  });
} else if (_permissionStatus == PermissionStatus.restricted) {
  bool isOpened = await PermissionHandler().openAppSettings();
  showToast(context, 'Permission Denied!');
} else if (_permissionStatus == PermissionStatus.unknown) {
  dirloc = (await getApplicationDocumentsDirectory()).path;

  Dio dio = Dio();
  var randid = random.nextInt(10000);
  try {
    FileUtils.mkdir([dirloc]);
    await dio.download(fileURL, dirloc + randid.toString() + ".pdf",
        onReceiveProgress: (receivedBytes, totalBytes) {
      setState(() {
        downloading = true;
        progress =
            ((receivedBytes / totalBytes) * 100).toStringAsFixed(0) + "%";
      });
    });
  } catch (e) {
    print(e);
  }

  setState(() {
    downloading = false;
    progress = "";
    path = dirloc + randid.toString() + ".pdf";
    _isLoading = false;
    showAlertOk(
        'Download Successfull',
        'Your downloaded file is here..\n'
            '$path',
        path);
  });
} else {
  showToast(context, 'Permission Denied!');
  setState(() {});
}

好的,我不知道这是否是预期的结果,但是我可以使用 getTempDirectory() 而不是 getApplicationDocumentsDirectory() 来下载文件

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM