Delete Folder from Firebase Storage using Google Cloud Storage
问题 I want to delete the folder "test" and everything that is in it. I am sucessfuly able to delete the folder and all it's contents/subfolders in FirebaseStorage with the terminal using this code: gsutil rm -r gs://bucketname.appspot.com/test/** However when I tried to do it in java, it does not work. Storage storage = StorageOptions.getDefaultInstance().getService(); String bucketName = "bucketname.appspot.com/test"; Bucket bucket = storage.get(bucketName); bucket.delete(Bucket