thinkanotherone
thinkanotherone

Reputation: 3145

Remove all files under a folder Google Cloud Storage

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 them at once ?

Upvotes: 28

Views: 30973

Answers (3)

user12910330
user12910330

Reputation:

simple command Type command in cloud console terminal

rm -rf [foldername]

Upvotes: -7

IanGSY
IanGSY

Reputation: 3714

I came across this problem myself a month or so ago, I had > 800,000 files to delete from a bucket.

After a lot of searching around, and an email to the GCS team, I found that the best way was to get GCS to delete the files for me by setting an Object Lifecycle Management policy to expire all of the files.

The only downside is that this method is not instant, it can take up to 24 hours until the files expire and are deleted, but once setup it will happen automatically.

Upvotes: 13

Brandon Yarbrough
Brandon Yarbrough

Reputation: 38369

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

Upvotes: 53

Related Questions