Reputation: 73
I have around 400 images, spread across in three local folders (it can be in a server or desktop), which I need to copy to firebase storage on a need basis. Once the work is completed, these images will be removed from the firebase storage. Please can you tell me how to copy the messages?
Thanks in advance for all your help
Upvotes: 0
Views: 110
Reputation: 26333
Cloud Storage for Firebase and Google Cloud Storage are the same infrastructure, so you can use the gsutil cp
command to copy files:
gsutil cp some-folder/* gs://your-bucket-name/some-folder
Upvotes: 1