使用@ ionic-native / file获取目录中的文件

时间:2017-10-11 15:49:43

标签: file ionic-framework native

我用这段代码写文件:

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,但我不知道它是如何工作的。

由于

0 个答案:

没有答案