I'm on the S3 Management Console and I see the instructions to type a prefix to search:
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?
2 Answers
From command line you can use command like:
aws s3 ls s3://bucket/ --recursive "filename" 1 There isn't a find equivalent that I know of. I do this:
aws s3 ls s3://bucket/ --recursive | grep filename