简介
本文档提供快捷查询某个存储桶是否存在的示例代码。
HeadBucket除了检查存储桶是否存在,还可以判断是否有权限访问存储桶,有以下几种情况:
存储桶存在且有读取权限,返回 HTTP 状态码为200。
无存储桶读取权限,返回 HTTP 状态码为403。
存储桶不存在,返回 HTTP 状态码为404。
检查存储桶是否存在
功能说明
您可以通过 SDK 提供的快捷接口来检查 Bucket 是否存在。
注意
COS Go SDK 版本需要大于等于 v0.7.33。
方法原型
func (s *BucketService) IsExist(ctx context.Context) (isExist bool, err error)
示例代码
package mainimport ("context""fmt""github.com/tencentyun/cos-go-sdk-v5""net/http""net/url""os")func main() {// 存储桶名称,由 bucketname-appid 组成,appid 必须填入,可以在 COS 控制台查看存储桶名称。 https://console.cloud.tencent.com/cos5/bucket// 替换为用户的 region,存储桶 region 可以在 COS 控制台“存储桶概览”查看 https://console.cloud.tencent.com/ ,关于地域的详情见 https://cloud.tencent.com/document/product/436/6224 。u, _ := url.Parse("https://examplebucket-1250000000.cos.ap-guangzhou.myqcloud.com")b := &cos.BaseURL{BucketURL: u}client := cos.NewClient(b, &http.Client{Transport: &cos.AuthorizationTransport{// 通过环境变量获取密钥// 环境变量 SECRETID 表示用户的 SecretId,登录访问管理控制台查看密钥,https://console.cloud.tencent.com/cam/capiSecretID: os.Getenv("SECRETID"), // 用户的 SecretId,建议使用子账号密钥,授权遵循最小权限指引,降低使用风险。子账号密钥获取可参见 https://cloud.tencent.com/document/product/598/37140// 环境变量 SECRETKEY 表示用户的 SecretKey,登录访问管理控制台查看密钥,https://console.cloud.tencent.com/cam/capiSecretKey: os.Getenv("SECRETKEY"), // 用户的 SecretKey,建议使用子账号密钥,授权遵循最小权限指引,降低使用风险。子账号密钥获取可参见 https://cloud.tencent.com/document/product/598/37140},})ok, err := client.Bucket.IsExist(context.Background())if err == nil && ok {fmt.Printf("bucket exists\\n")} else if err != nil {fmt.Printf("head bucket failed: %v\\n", err)} else {fmt.Printf("bucket does not exist\\n")}}
返回结果说明
参数名称 | 描述 | 类型 |
isExist | 存储桶是否存在 | bool |
err | 请求是否成功 | struct |