If I have a path in Google Firebase Storage that looks like this... userUID/creationDate
and I have more than 1 image stored at that path, how can I download all images at that location?
For example, can I just tell firebase to download all data at userUID/creationDate
?
Or, for each image, do I need to download directly from the url (e.g. userUID/creationDate/image1.jpg
& userUID/creationDate/image2.jpg
)?
I'm using Swift in an iOS project.
Thanks! All feedback is much appreciated.