DBHari
DBHari

Reputation: 73

Copying Folder of Images from local machine to Firebase Storage

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

Answers (1)

Michael Bleigh
Michael Bleigh

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

Related Questions