JavaScript: List all files in a bucket
- Policy permissions required:
buckets
permissions: none
objects
permissions: select
Examples
List files in a bucket
const \{ data, error \} = await supabase
.storage
.from('avatars')
.list('folder', \{
limit: 100,
offset: 0,
sortBy: \{ column: 'name', order: 'asc' \},
\})
Search files in a bucket
const \{ data, error \} = await supabase
.storage
.from('avatars')
.list('folder', \{
limit: 100,
offset: 0,
sortBy: \{ column: 'name', order: 'asc' \},
search: 'jon'
\})