How do you search an amazon s3 bucket?

后端 未结 21 2311
渐次进展
渐次进展 2020-11-30 18:00

I have a bucket with thousands of files in it. How can I search the bucket? Is there a tool you can recommend?

21条回答
  •  一整个雨季
    2020-11-30 18:19

    I tried in the following way

    aws s3 ls s3://Bucket1/folder1/2019/ --recursive |grep filename.csv
    

    This outputs the actual path where the file exists

    2019-04-05 01:18:35     111111 folder1/2019/03/20/filename.csv
    

提交回复
热议问题