微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Cordova – 在下载文件夹中下载文件

我已经阅读了很多帖子,但我没有得到最终答案.
从这个 link代码开始,我将我的文件下载到应用程序中.无论如何,我想看到它进入“下载”文件夹.
我正在使用Android,但显然我也想要一个适用于iOS的解决方案.

解决方法

编辑

如果您已经知道文件的路径,则可以移动它:

var storageLocation = "";
console.log(device.platform);
switch (device.platform) {

    case "Android":
        storageLocation = 'file:///storage/emulated/0/';
        break;
    case "iOS":
        storageLocation = cordova.file.documentsDirectory;
        break;

}


var fileUri = "file:///data/user/0/com.arsdigitalia.myapp/files/files/MyApp‌​/test.pdf"

function moveFile(fileUri) {
    window.resolveLocalFileSystemURL(
          fileUri,function(fileEntry){

                var parentEntry = storageLocation + "Download";
               
                // move the file to a new directory and rename it
               fileEntry.moveto(parentEntry,"newFile.pdf",success,fail);
                       
          },errorCallback);
}

原版的

这是我用来完成此任务的示例代码.它在Android上效果最好,由于应用程序沙盒,iOS有点不同,因此您需要自己处理检索文件.我还使用Cordova设备插件来确定应用程序运行的设备,然后我可以更改存储路径以适应:

var storageLocation = "";
console.log(device.platform);
switch (device.platform) {

    case "Android":
        storageLocation = 'file:///storage/emulated/0/';
        break;
    case "iOS":
        storageLocation = cordova.file.documentsDirectory;
        break;

}

window.resolveLocalFileSystemURL(storageLocation,function (fileSystem) {

        fileSystem.getDirectory('Download',{
                create: true,exclusive: false
            },function (directory) {

                //You need to put the name you would like to use for the file here.
                directory.getFile("YOUR_FILE_NAME",{
                        create: true,exclusive: false
                    },function (fileEntry) {


                        fileEntry.createWriter(function (writer) {
                            writer.onwriteend = function () {
                                console.log("File written to downloads")
                            };

                            writer.seek(0);
                            writer.write(YOUR_FILE_HERE); //You need to put the file,blob or base64 representation here.

                        },errorCallback);
                    },errorCallback);
            },errorCallback);
    },errorCallback);

var errorCallback = function(e) {
    
    console.log("Error: " + e)
    
}

然后从您可以使用的目录中检索文件列表:

window.resolveLocalFileSystemURL(storageLocation,function (fileSystem) {
    
        fileSystem.getDirectory('Download',function (directory) {

                var reader = directory.createReader();
                reader.readEntries(function (files) {

                    if (files.length == 0) {

                        console.log("No files found in downloads folder.")

                    } else {

                        $.each(files,function (i,v) {

                            console.log("File Name: " + files[i].name;)

                        });

                    }

                },getFilesFail);
            },getFilesFail);
    },getFilesFail);

var getFilesFail = function(e) {
    
    console.log("Error: " + e);
    
}

要安装设备插件,请使用以下命令:

cordova plugin add cordova-plugin-device

文档在这里

https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-device/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐