Nandini created CB-8108:
---------------------------
Summary: Cordova file transfer - download fails gradually for
multiple files
Key: CB-8108
URL: https://issues.apache.org/jira/browse/CB-8108
Project: Apache Cordova
Issue Type: Bug
Components: iOS
Reporter: Nandini
We have nearly 250 files to download, when it starts it downloads faster for
the first 10 files, later it slows down and at certain point it just stops,
neither throws an error nor a success call back
here is my code
function GetLayouts() {
if (LayoutIdArray.length == 0) {
return;
}
var remoteFile = LayoutIdArray.pop();
var fileURL = "cdvfile://localhost/persistent/" +
remoteFile.ProjectId + "/" + remoteFile.FolderId + "/" + remoteFile.LayoutId +
"/" + remoteFile.LayoutId + ".zip";
var fileTransfer = new FileTransfer();
var uri = encodeURI(zipUri + "/" + remoteFile.LayoutId + ".zip");
fileTransfer.download(
uri,
fileURL,
function (entry) {
console.log("download complete: " + entry.fullPath);
GetLayouts();
},
function (error) {
console.log("download error source " + error.source);
console.log("download error target " + error.target);
console.log("upload error code" + error.code);
},
false,
{
}
);
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]