Home supabase List all files in a bucket
Post
Cancel

supabase List all files in a bucket

내일배움캠프 LGLG!

최종 프로젝트 주차 - Team Project

List all files in a bucket

버킷에 있는 모든 파일 가져오기

1
2
3
4
5
6
7
8
const { data, error } = await supabase
  .storage
  .from('avatars')
  .list('folder', {
    limit: 100,
    offset: 0,
    sortBy: { column: 'name', order: 'asc' },
  })

버킷에 있는 모든 파일에서 검색하기

1
2
3
4
5
6
7
8
9
const { data, error } = await supabase
  .storage
  .from('avatars')
  .list('folder', {
    limit: 100,
    offset: 0,
    sortBy: { column: 'name', order: 'asc' },
    search: 'jon'
  })
This post is licensed under CC BY 4.0 by the author.

supabase Download a file

supabase Replace an existing file