Remove all files under a folder Google Cloud Storage

前端 未结 3 1478
粉色の甜心
粉色の甜心 2021-01-04 09:41

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

相关标签:
3条回答
  • 2021-01-04 09:45

    simple command Type command in cloud console terminal

    rm -rf [foldername]
    
    0 讨论(0)
  • 2021-01-04 09:48

    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
    
    0 讨论(0)
  • 2021-01-04 10:03

    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.

    0 讨论(0)
提交回复
热议问题