从 AWS Cloudian Object Store 获取文件大小。

问题描述 投票:0回答:1

我目前使用AWS S3从S3中检索整个文本文件,使用以下命令。

aws --profile=cloudian --endpoint-url=https://s3-abc.abcstore.abc.net s3 cp s3://abc-store/STORE1/abc2/ABC/test_08.txt test.txt

我怎么能只得到文件大小?

amazon-web-services amazon-s3 command-line-interface
1个回答
1
投票

如果你只想知道大小,就用头部对象操作。

aws --profile=cloudian --endpoint-url=https://s3-abc.abcstore.abc.net s3api head-object --bucket abc-store --key STORE1/abc2/ABC/test_08.txt --query 'ContentLength'
© www.soinside.com 2019 - 2024. All rights reserved.