Пожалуйста, добавьте этот код в app.js и получите корневой путь устройства, используя app.appConfig.filesDir + filename
app.appConfig = {
filesDir: "",
filesSubDir: "",
};
if (device.platform === "iOS") {
app.appConfig.filesDir = cordova.file.documentsDirectory;
}
else {
app.appConfig.filesDir = cordova.file.externalRootDirectory; //for android
}