Lists all the files within a bucket.
buckets
table permissions: noneobjects
table permissions: select
The folder path.
const \{ data, error \} = await supabase
.storage
.from('avatars')
.list('folder', \{
limit: 100,
offset: 0,
sortBy: \{ column: 'name', order: 'asc' \},
\})
const \{ data, error \} = await supabase
.storage
.from('avatars')
.list('folder', \{
limit: 100,
offset: 0,
sortBy: \{ column: 'name', order: 'asc' \},
search: 'jon'
\})