gpt4 book ai didi

amazon-web-services - 如何使用通配符从 aws s3 中选择文件

转载 作者:行者123 更新时间:2023-12-04 00:21:10 30 4
gpt4 key购买 nike

我在 s3 存储桶中有很多文件,我想复制那些开始日期为 2012 年的文件。下面的命令复制所有文件。

aws s3 cp s3://bp-dev/bp_source_input/ C:\Business_Panorama\nts\data\in --recursive  --include "201502_nts_*.xlsx"

最佳答案

您可能希望在包含过滤器之前添加“--exclude”标志。

AWS CLI 使用过滤器“--include”将其包含在您现有的搜索中。由于要返回所有文件,因此您需要先排除所有文件,然后再包含 2015*.xlsx。

如果你只想要格式为“201502_nts_*.xlsx”的文件,你可以运行 aws s3 cp s3://bp-dev/bp_source_input/ C:\Business_Panorama\nts\data\in --recursive --exclude * --include "201502_nts_*.xlsx"

关于amazon-web-services - 如何使用通配符从 aws s3 中选择文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29550265/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com