How to search for nested files in my S3 bucket?

0

I'm on the S3 Management Console and I see the instructions to type a prefix to search:

enter image description here

However, when I search, it only finds files in the current folder. Is there a way to search for files that might be in a nested folder?

If this can't be done from the web console. Is it possible to do it using a command line utility?

nachocab

Posted 2020-02-28T15:24:58.207

Reputation: 87

Answers

1

From command line you can use command like:

aws s3 ls s3://bucket/ --recursive "filename"

Romeo Ninov

Posted 2020-02-28T15:24:58.207

Reputation: 2 062

Thanks, but it doesn't allow the "filename". I guess I can grep the output of this call, but I was wondering if there was a find equivalent – nachocab – 2020-02-28T18:57:43.463