Reputation: 391
I have an images directory in Firebase Storage and I am trying to download all the files in that directory from the console. It gives me the option to select all files and a download button appears but when I click it only 1 image is downloaded.
Is there a way to download all the images via the Firebase Console?
Upvotes: 2
Views: 2274
Reputation: 968
You can use the gsutil tool to download all files from your Firebase Storage bucket. Use the cp command:
gsutil -m cp -r gs://{{bucket_url}} {{local_path_to_save_downloads}}
-m
performs a multi-threaded download. Use this if you want to download a large number of files to perform parallel downloads
-r
to copy an entire directory tree
Upvotes: 4
Reputation: 1240
Just had the same issue. Turns out it's a known issue.
Here's the response from Firebase support:
This is a known bug when trying to download directly on the Storage Console. Our engineers are working on getting it fixed, however I can't provide any timelines right now. We apologize for the inconvenience this may have caused you. For the time being, you may download the file by right-clicking the image previewed, then choose "Save image as...".
Upvotes: 1