I am using below code to downloadig the file but for download the file in specific folder i need to choose it from Gallary options…How can i open and select specific folder in my app.
var fileTransfer = new FileTransfer();
console.log("About to start transfer");
fileTransfer.download(assetURL,localfilepath,
function(entry) {
console.log("Success!");
appStart();
},
function(err) {
console.log("Error");
console.dir(err);
});