我发现了一个在我的设备SD卡中下载文件的功能
application.downloadFile = function(file, callback)
{
window.requestFileSystem(
LocalFileSystem.PERSISTENT, 0,
function onFileSystemSuccess(fileSystem) {
fileSystem.root.getFile(
"dummy.html", {create: true, exclusive: false},
function gotFileEntry(fileEntry) {
var sPath = fileEntry.fullPath.replace("dummy.html","");
var fileTransfer = new FileTransfer();
fileEntry.remove();
fileTransfer.download(
application.api+file,
sPath + "assas.json",
function(theFile) {
console.log("download complete: " + theFile.toURI());
application.dataPath = theFile.toURI();
callback();
},
function(error) {
console.log("download error source " + error.source);
console.log("download error target " + error.target);
console.log("upload error code: " + error.code);
}
);
});
});
};
代码工作正常,但它下载了我的SD卡中的代码,我想在我的应用程序中直接下载我的文件。
在www / datas
中但我不知道如何做到这一点
由于
答案 0 :(得分:1)
不幸的是,WWW文件夹是只读的,你不能写入它。您只能写入文件系统。