How to create a folder in Firebase Storage?
So the new Firebase has support for storage using Google Cloud Platform. You can upload a file to the images folder using: var uploadTask = storageRef.child('images').put(file, metadata); What if you want to create a subfolder images/user1234 dynamically using code? The offical sample does not show how to do that, nor the official guide or reference docs . Is the Firebase Console the only place where folders can be created manually ? The Firebase Console does allow you to create a folder, since it's the easiest way to add files to a specific folder there. But there is no public API to create a