Is there any way to fetch all the URLs from Firebase Storage?
I know there are ways to fetch URLs from firebase database like storing URLs of Firebase Storage files in Firebase Realtime Database and fetch from it. But I am uploading images from the button which is showing in the image and want URLs of all those uploaded images directly from the firebase storage path like...
var mStorageRef: StorageReference
mStorageRef = FirebaseStorage.getInstance().reference
and using it something like...
mStorageRef.fetchall() or mStorageRef.getall()
I also foudn this link where you can downlaod files by its name and only one by one. I want a way to fetch all at once.
Any help would be appreciated.