方法
現状フォルダごと削除する機能はないので、リストを取得してループを回す。
フォルダ配下のファイルがすべて消えるとフォルダも削除される。
// 削除するフォルダへの参照を作成
var listRef = storageRef.child('files/uid');
// フォルダ配下のアイテムをすべて取得
listRef.listAll().then( (res) => {
res.items.forEach( (itemRef) => {
// 削除
itemRef.delete()
});
参考
https://firebase.google.com/docs/storage/web/delete-files?hl=ja
https://firebase.google.com/docs/storage/web/list-files?hl=ja