from.update()

用一个新的文件替换指定路径下的一个现有文件。

1final avatarFile = File('path/to/local/file');
2final String path = await supabase.storage.from('avatars').update(
3      'public/avatar1.png',
4      avatarFile,
5      fileOptions: const FileOptions(cacheControl: '3600', upsert: false),
6    );

Notes#

  • 需要的政策权限。
    • buckets权限: 无
    • objects 的权限: update and select

Examples#

更新文件

1final avatarFile = File('path/to/local/file');
2final String path = await supabase.storage.from('avatars').update(
3      'public/avatar1.png',
4      avatarFile,
5      fileOptions: const FileOptions(cacheControl: '3600', upsert: false),
6    );