简介
该接口可以在不解压文件的情况下预览压缩包内的内容,包含文件数量、名称、文件时间等,接口为同步请求方式。
API | 说明 |
用于同步压缩包预览。 |
同步请求接口
功能说明
压缩包预览功能同步请求。
方法原型
func (s *CIService) ZipPreview(ctx context.Context, name, uncompress_key string) (*ZipPreviewResult, *Response, error)
请求示例
name := "test.rar"uncompress_key := "test-uncompress-key-xxx"res, resp, err := c.CI.ZipPreview(context.Background(), name, uncompress_key)
参数说明
参数名称 | 描述 | 类型 | 是否必填 |
name | 预览 COS 上的压缩包对象文件名,例如 test.rar | String | 是 |
uncompress_key | 对于已加密的压缩包,可通过该字段填入解密密钥,密钥需进行 base64编码 | String | 否 |