我在使用*AWS CLI 从某个存储桶中选择文件子集时遇到问题。
*
像这样添加*到路径似乎不起作用
aws s3 cp s3://data/2016-08* .
要将多个文件从 aws 存储桶下载到您的当前目录,您可以使用recursive、exclude和include标志。 参数的顺序很重要。
recursive
exclude
include
示例命令:
aws s3 cp s3://data/ . --recursive --exclude "*" --include "2016-08*"
有关如何使用这些过滤器的更多信息:http: //docs.aws.amazon.com/cli/latest/reference/s3/#use-of- exclude-and-include- filters