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

相關內容