Phonegap Downloader Plugin,将数据保存到/ data文件夹

时间:2012-06-19 14:21:56

标签: android cordova phonegap-plugins

我正在使用jquery-mobile和phonegap为Android开发应用程序。 我正在使用Downloader Plugin,以便从远程服务器下载一些文件。

我已经安装了该插件并按照文档中的建议调用它:

window.plugins.downloader.downloadFile("http://server/file.txt", {overwrite: true, dirName: 'sdcard/MyFolder'}, 
      function(res) {
        alert(JSON.stringify(result));
    }, function(error) {
        alert(error);
    }
);

到目前为止工作得很好。

我想要做的是将下载的数据保存在根目录下。特别是在数据文件夹(/data/MyAppData)中。是否可以使用这个插件?

也欢迎实现此功能的其他解决方案(例如,使用phonegap的File API)

0 个答案:

没有答案