gpt4 book ai didi

firebase - 如何使用 Firebase 存储移动文件?

转载 作者:行者123 更新时间:2023-12-02 23:02:31 27 4
gpt4 key购买 nike

有没有办法使用 firebase.storage() 移动文件?

示例:user1/public/image.jpg 到 user1/private/image.jpg

最佳答案

由于 Firebase Storage 由 Google Cloud Storage 支持,因此您可以使用 GCS 的 rewrite API ( docs ) 或 gsutil mv ( docs )。

此外,GCloud 节点中的 move ( docs ) 示例如下:

var bucket = gcs.bucket('my-bucket');
var file = bucket.file('my-image.png');
var newLocation = 'gs://another-bucket/my-image-new.png';
file.move(newLocation, function(err, destinationFile, apiResponse) {
// `my-bucket` no longer contains:
// - "my-image.png"
//
// `another-bucket` now contains:
// - "my-image-new.png"

// `destinationFile` is an instance of a File object that refers to your
// new file.
});

关于firebase - 如何使用 Firebase 存储移动文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38601548/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com