嗨,我是ionic 3的新手,我开发了一个应用程序,在该应用程序中,我需要将图像,视频,音频文件下载并保存到fireabse中存在的设备中。我完成了下载文件并保存到设备中。我看到带有文件管理器的设备中保存的文件,但是当我打开厨房时,我没有看到下载的文件。如何更新或刷新图库以查看ionic 3中下载的文件。
示例代码。
float f1 = 4 / 5;
请帮助我解决问题。预先感谢。
我尝试使用photoLibrary,但是Firebase URL出现问题。
示例代码。
path = this.file.externalDataDirectory;
this.fileTransfer.download(payload.url,path+ name).then((entry) => {
console.log('download complete: ' + entry.toURL());
console.log(entry);
}, (error) => {
console.log("error while downloading the file");
console.log(error);
});