I'm new in Firebase
. I want to know if it is possible to download all images which uploaded manually ? I searched on this topic but I found that ,I need the image URL
and save it in a Firebase Realtime Database
, but in this case if I uploaded it programmatically . Is there another way ? because I want to upload it manually .
Asked
Active
Viewed 38 times
0

Doug Stevenson
- 297,357
- 32
- 422
- 441

Ahmed
- 259
- 3
- 14
1 Answers
1
The Firebase client SDKs require you to know the name of a file in Cloud Storage in order to download it. There are no bulk file download operations.

Doug Stevenson
- 297,357
- 32
- 422
- 441
-
So in this way I have to get the images' names and pass them in download function ? – Ahmed Jul 22 '18 at 12:32
-
Yes, you have to know the names of the files. – Doug Stevenson Jul 22 '18 at 12:40