首页 > 解决方案 > 如何在 iOS 中下载和打开文件?

问题描述

我想下载一个文件然后打开它。它在: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(() {});
}

标签: iosiphoneflutter

解决方案


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


推荐阅读