gpt4 book ai didi

amazon-web-services - 删除 S3 文件夹时是否可以应用通配符模式

转载 作者:行者123 更新时间:2023-12-03 19:54:12 25 4
gpt4 key购买 nike

http://docs.aws.amazon.com/cli/latest/reference/s3/rm.html

s3://foo/2015-01-01/..
s3://foo/2015-01-02/..
s3://foo/2015-01-03/..
..
s3://foo/2016-01-01/..
s3://foo/2016-01-02/..
s3://foo/2016-01-03/..

在上面的设置中,我想在我的删除中应用通配符。
e.g. aws s3 rm s3://foo/2015* 
or
aws s3 rm s3://foo/2016-02-*

我无法使用现有命令实现此目的,是否可以实现,因为我有大量文件要删除,并且我想并行运行命令以加快删除速度。

最佳答案

目前,不支持在命令的路径参数中使用 UNIX 风格的通配符,但您可以使用 --exclude "<value>"--include "<value>" 参数来实现所需的结果:

aws s3 rm s3://foo/ --recursive --exclude "*" --include "2016-02-*" --dryrun

关于amazon-web-services - 删除 S3 文件夹时是否可以应用通配符模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38716838/

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