Supabase - 使用 Flutter 导航到存储中的文件

问题描述 投票:0回答:0

我在 Supabase 存储的 Bucket 中有几个文件夹,我需要访问其中的文件以获取信息,例如: “user1”桶有 3 个文件夹(文件、图像、笔记).. 我如何导航到“图像”文件夹中的文件并获取其中所有图像的信息,例如(名称,类型,上传时间...);

final supabase = Supabase.instance.client;
var  informations= await supabase.storage.from('user1'); // how I can access to the images folder from here and get the infrmations for all files inside of it?
flutter dart navigation storage supabase
© www.soinside.com 2019 - 2024. All rights reserved.