提问人:Jaafar Melhem 提问时间:3/24/2023 更新时间:3/27/2023 访问量:105
Supabase - 使用 Flutter 导航到存储中的文件
Supabase - navigate to a file in the storage with Flutter
问:
我在 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?
答:
0赞
thorwebdev
3/27/2023
#1
您可以列出存储桶中的所有文件:https://supabase.com/docs/reference/dart/storage-from-list
final List<FileObject> objec = await supabase
.storage
.from('user1')
.list();
评论
0赞
Jaafar Melhem
3/27/2023
它为我提供了存储桶(文件,图像,注释)中的文件夹列表,但是我如何访问这些文件夹中的文件?
评论