Folder won't delete on Amazon S3

后端 未结 5 829
情书的邮戳
情书的邮戳 2021-02-13 14:53

I\'m trying to delete a folder created as a result of a MapReduce job. Other files in the bucket delete just fine, but this folder won\'t delete. When I try to delete it from

5条回答
  •  独厮守ぢ
    2021-02-13 15:39

    I had the same issue and used AWS CLI to fix it:

    aws s3 rm s3://// --recursive ;
    

    (this assumes you have run aws configure and aws s3 ls s3:/// already works)

提交回复
热议问题