我用这段代码写文件:
this.file.writeFile(`${this.file.externalRootDirectory}/app_name/.tmp`, `${this.countPictures}.jpg`, blob, options)
.then(res => {
this.countPictures++;
this.file.resolveLocalFilesystemUrl(res.fullPath).then((data) => {
this.alertService.show(JSON.stringify(data), 'long', 'bottom')
})
this.events.publish('update:badges', 'picture', res.nativeURL);
}, err => {
this.alertService.show(`${JSON.stringify(err)}`, 'long', 'bottom')
});
现在,我想获取这些文件以及有多少文件。我尝试用:this.file.resolveDirectoryUrl,但我不知道它是如何工作的。
由于