Reputation: 40754
I want to delete old backup in Google Cloud Storage.
The 'delete' button is not enabled after items are selected
Why 'delete' is disabled?
Upvotes: 0
Views: 88
Reputation: 152
The web interface is not working (still now). But you can use "gsutil". It is a command line tool to access the cloud storage. For this you have to download and install the Google Cloud SDK. Perform gcloud init and gcloud auth login. Select your project and login into the cloud platform.
Now from command line you can use these commands-
gsutil rm gs://<bucket-url>/<file-name> .........to delete a file
gsutil rm -r gs://<bucket-url>...................to delete a bucket
Upvotes: 1