获取对象元数据
功能说明
获取指定文件的元信息。
方法原型
func (s *ObjectService) Head(ctx context.Context, key string, opt *ObjectHeadOptions) (*Response, error)
请求示例
key := "test/hello.txt"
resp, err := client.Object.Head(context.Background(), key, nil)
参数说明
type ObjectHeadOptions struct {
IfModifiedSince string
}
参数名称 | 参数描述 | 类型 | 必填 |
---|
key | 对象键(Key)是对象在存储桶中的唯一标识。例如,在对象的访问域名 bucket1-1250000000.cos.ap-guangzhou.myqcloud.com/doc1/pic1.jpg 中,对象键为 doc1/pic1.jpg | string | 是 |
IfModifiedSince | 在指定时间后被修改才返回 | string | 否 |
返回结果说明
{
'Content-Type': 'application/octet-stream',
'Content-Length': '16807',
'ETag': '"9a4802d5c99dafe1c04da0a8e7e166bf"',
'Last-Modified': 'Wed, 28 Oct 2014 20:30:00 GMT',
'X-Cos-Request-Id': 'NTg3NzQ3ZmVfYmRjMzVfMzE5N182NzczMQ=='
}
参数名称 | 参数描述 | 类型 |
---|
文件元信息 | 获取文件的元信息,包括 Etag 和 X-Cos-Request-Id 等信息,也会包含设置的文件元信息 | string |