Я хочу отобразить файлы в созданной директории. Файлы могут быть любого формата, например аудио, видео, изображения и т. Д. c. Вот как я могу создать каталог и удалить каталог. Home.ts
createDirectory(){
this.file.createDir(this.file.externalRootDirectory, "DirectoryFile", false )
.then((directoryEntry) =>{
alert("directory created"+ directoryEntry.fullPath);
}
).catch((error)=>{
alert(JSON.stringify(error));
})
}
removeDirectory(){
this.file.removeDir(this.file.externalRootDirectory, "DirectoryFile")
.then((resultData) =>{
if(resultData.success){
alert("directory removed" + resultData);
}
})
.catch((err) =>{
alert(JSON.stringify(err));
})
enter code here