Since Firebase storage is supported by Google Cloud Storage, you can use the GCS rewrite ( docs ) or gsutil mv ( docs ) gsutil mv .
In addition, the move ( docs ) example in the GCloud Node follows:
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) {
Mike mcdonald
source share