Home supabase Replace an existing file
Post
Cancel

supabase Replace an existing file

내일배움캠프 LGLG!

최종 프로젝트 주차 - Team Project

Replace an existing file

기존 버킷 파일 바꾸기

1
2
3
4
5
6
7
8
const avatarFile = event.target.files[0]
const { data, error } = await supabase
  .storage
  .from('avatars')
  .update('public/avatar1.png', avatarFile, {
    cacheControl: '3600',
    upsert: true
  })

base64 파일 데이터에서 ‘ArrayBuffer’를 사용하여 파일 업데이트

1
2
3
4
5
6
7
8
import {decode} from 'base64-arraybuffer'

const { data, error } = await supabase
  .storage
  .from('avatars')
  .update('public/avatar1.png', decode('base64FileData'), {
    contentType: 'image/png'
  })
This post is licensed under CC BY 4.0 by the author.

supabase List all files in a bucket

supabase Move an existing file