[Vuejs]-Is there any way to delete a folder of images from firebase storage

1👍

Currently firebase doesn’t support deleting directories and it is a known issue. You can only delete individual files. So, it’s best to store a reference to those files and remove them one by one.

As mentioned here Firebase Storage does not work with folders. Folders actually don’t exist, only files. You can upload files to a specific location/path but their entire filesystem is closer to a flat hash table where you store path/file pairs, than to a file system with multiple folder levels.

You can check the following links for deleting files individually: link1, link2 and link3

Leave a comment