Hi, i want create a file in my ionic 2 app.
I add cordova-plugin-file for that, and i test on android device emulator with AVD manager.
My code :
let targetPath = cordova.file.documentsDirectory;
console.log(targetPath); // print: file:///data/data … /files/, it’s okay
try {
File.createDir(targetPath, ‘toto.txt’, true).then((data) => …,
(data) => …);
}
catch (e) {
console.log(e); // throw an exception
}
An exception is throwed by try catch :
TypeError: Object function(name, localURL, type, lastModifiedDate, Size) … has no method createDir.
But i follow this doc Ionic Native - File, and there an function static createDir.
What is the problem?
Thanks!