I have hundred files under a folder in Google Cloud Storage. But, the UI doesn\'t give me a way to select all files at once.
How can I select all files and delete
The easiest way would be to use the command-line utility, gsutil. This command will delete them all:
gsutil -m rm gs://BUCKET_NAME/**
If you want to delete the bucket as well, you could do this instead:
gsutil -m rm -R gs://BUCKET_NAME