获取对象元数据

功能说明

获取指定文件的元信息。

方法原型

  1. func (s *ObjectService) Head(ctx context.Context, key string, opt *ObjectHeadOptions) (*Response, error)

请求示例

  1. key := "test/hello.txt"
  2. resp, err := client.Object.Head(context.Background(), key, nil)

参数说明

  1. type ObjectHeadOptions struct {
  2. IfModifiedSince string
  3. }
参数名称参数描述类型必填
key对象键(Key)是对象在存储桶中的唯一标识。例如,在对象的访问域名 bucket1-1250000000.cos.ap-guangzhou.myqcloud.com/doc1/pic1.jpg 中,对象键为 doc1/pic1.jpgstring
IfModifiedSince在指定时间后被修改才返回string

返回结果说明

  1. {
  2. 'Content-Type': 'application/octet-stream',
  3. 'Content-Length': '16807',
  4. 'ETag': '"9a4802d5c99dafe1c04da0a8e7e166bf"',
  5. 'Last-Modified': 'Wed, 28 Oct 2014 20:30:00 GMT',
  6. 'X-Cos-Request-Id': 'NTg3NzQ3ZmVfYmRjMzVfMzE5N182NzczMQ=='
  7. }
参数名称参数描述类型
文件元信息获取文件的元信息,包括 Etag 和 X-Cos-Request-Id 等信息,也会包含设置的文件元信息string