How do you download a file to Android's Downloads folder using Phonegap?

前端 未结 4 1428
天涯浪人
天涯浪人 2021-01-05 07:10

I have successfully downloaded a file to my Android phone using Phonegap\'s File API. I would like to download the file to the Downloads folder on my phone. For example, if

4条回答
  •  一个人的身影
    2021-01-05 07:27

    I have created a plugin which downloads file using download manager and shows progress bar along the way

    https://github.com/vasani-arpit/cordova-plugin-downloadmanager

    //after device is ready
    var fail = function (message) {    
       alert(message)
    }
    var success = function (data) {
       console.log("succes");
    }
    cordova.plugins.DownloadManager.download("Your URL to download", success, fail);
    

    I hope it helps.

提交回复
热议问题