如何使用Golang检查s3对象大小

时间:2019-03-28 05:47:16

标签: amazon-web-services go amazon-s3 aws-sdk

我已经实现了从AWS S3存储桶下载对象的功能。这很好。但是我需要显示一个下载进度栏。为此,我需要根据here事先知道对象的大小 。有人知道如何获取对象大小吗?

这是我的代码。

func DownloadFromS3Bucket(bucket, item, path string) {
    file, err := os.Create(filepath.Join(path, item))
    if err != nil {
        fmt.Printf("Error in downloading from file: %v \n", err)
        os.Exit(1)
    }

    defer file.Close()

    sess, _ := session.NewSession(&aws.Config{
        Region: aws.String(constants.AWS_REGION), Credentials: credentials.AnonymousCredentials},
    )

    // Create a downloader with the session and custom options
    downloader := s3manager.NewDownloader(sess, func(d *s3manager.Downloader) {
        d.PartSize = 64 * 1024 * 1024 // 64MB per part
        d.Concurrency = 6
    })

    numBytes, err := downloader.Download(file,
        &s3.GetObjectInput{
            Bucket: aws.String(bucket),
            Key:    aws.String(item),
        })
    if err != nil {
        fmt.Printf("Error in downloading from file: %v \n", err)
        os.Exit(1)
    }

    fmt.Println("Download completed", file.Name(), numBytes, "bytes")
}

2 个答案:

答案 0 :(得分:3)

您可以使用包含HeadObjectheader Content-Length

  

用于Amazon Simple Storage Service的HeadObject API操作。

     

HEAD操作从对象检索元数据而不返回   对象本身。如果您只感兴趣,此操作很有用   在对象的元数据中。要使用HEAD,您必须具有对   对象。

答案 1 :(得分:2)

这应该有效:

headObj := s3.HeadObjectInput{
    Bucket: aws.String(bucket),
    Key: aws.String(key),
}
result, err := S3.HeadObject(&headObj)
if err != nil {
  // handle error
}
return aws.Int64Value(result.ContentLength)