AWS s3 仅列出存储桶中的文件夹名称

AWS s3 仅列出存储桶中的文件夹名称

我有一个 s3 存储桶,其中包含带有日期前缀的文件夹。例如-

bucket_name
    --> 2021-11-01
    --> 2021-11-02
    --> 2021-11-03
    --> 2021-11-04
           ...
           ...
    --> 2021-11-10

我的想法是,如果整个文件夹已存在 7 天,我需要清理其中包含的对象。所以我只需要找到该存储桶内的文件夹名称检查它的日期并删除其中的内容。

完整代码:

aws s3 ls s3://$S3_PATH/ | while read -r line;  do
    # Get file creation date
    createDate=`echo $line|awk {'print $1" "$2'}`
    createDate=`date -d"$createDate" +%s`

     if [[ $createDate -lt $DELETETION_TIMESTAMP ]]
     then
         # Get file name
         FILENAME=`echo $line|awk {'print $4'}`
         if [[ $FILENAME != "" ]]
           then
             echo "   -> Deleting $FILENAME"
             aws s3 rm --recursive s3://S3_PATH/$createDate/
         fi
     fi
done;

错误:如果我做echo $createDate

日期:无效日期“PRE 2021-11-01/”

编辑:

echo $line

回报

PRE 2021-11-01/
2021-11-01 15:10:15 0

相关内容