I have been using filetransfer plugin in our hybrid html app and it supports both widows 8.1 and ios and android but I also need it to work in Windows 10 store app. It seems like it cannot download file in windows 10 please suggest some alternative plugin to download files from server or if we got this work in windows 10
sample code below
var fileTransfer = new FileTransfer();
var uri = encodeURI("some_url.com");
var fileName = "localpathofwindows"
fileTransfer.download(uri, fileName,
function(entry) {
console.log("file download success");
},
function(error) {
console.log("file download failure");
},
false, {
headers: {
"Authorization": auth,
"action": "getFiles"
}
});