Моя функция копирования файлов находится здесь:
copyFileToLocalDir(namePath, currentName, newFileName) {
debugger;
this.file.copyFile(namePath, currentName, this.file.externalDataDirectory, newFileName).then(
success => {
debugger;
this.updateStoredImages(newFileName);
// this.presentToast('Success while storing file.');
},
error => {
console.log(error);
// this.presentToast('Error while storing file.');
});
}
Пожалуйста, помогите мне решить эту проблему