i want to save 10 images in Firebase. and update that 10 images with another 10 images everyday, does updating the images will take storage every time?
Asked
Active
Viewed 61 times
-1
-
Please edit the question to be more specific about what you're trying to accomplish. It always helps to show code and explain fully the behavior of that code. – Doug Stevenson Jun 13 '20 at 15:24
-
I think, it depends on the preferences of the web site, updates may or may not take extra storage. Just for example; Google Drive —though you upload same file with exactly the same file name— can store different versions of the same file. You'd better dig into the settings of the Firebase docs. – ssd Jun 13 '20 at 16:42
1 Answers
0
Every distinct file in Firebase Storage has its own unique path.
If you store one of your images at /my-images/5
and then upload a different image to the same resource path (/my-images/5
), it will get overwritten replacing the currently stored one.
Answering your question: no, it won't take any additional storage capacity (ignoring the difference in size between the old and the new file) provided that you upload your images to the same locations.

Damian Głowala
- 33
- 1
- 4