Skip to main content

from.copy()

Copies an existing file.

const { data, error } = await supabase
.storage
.from('avatars')
.copy('public/avatar1.png', 'private/avatar2.png')

Parameters

  • fromPathrequiredstring

    The original file path, including the current file name. For example folder/image.png.

  • toPathrequiredstring

    The new file path, including the new file name. For example folder/image-copy.png.

Notes

  • Policy permissions required:
    • buckets permissions: none
    • objects permissions: update and select

Examples

Copy file

const { data, error } = await supabase
.storage
.from('avatars')
.copy('public/avatar1.png', 'private/avatar2.png')