文件上传

更新时间: 2019-03-14 10:05

文件上传使用本地文件作为对象的数据源,您可以通过ObsClient.PutFile上传本地文件。以下代码展示了如何进行文件上传:

  1. // 引入依赖包
  2. import (
  3. "fmt"
  4. "obs"
  5. )
  6.  
  7. var ak = "*** Provide your Access Key ***"
  8. var sk = "*** Provide your Secret Key ***"
  9. var endpoint = "https://your-endpoint"
  10.  
  11. // 创建ObsClient结构体
  12. var obsClient, _ = obs.New(ak, sk, endpoint)
  13.  
  14. func main() {
  15. input := &obs.PutFileInput{}
  16. input.Bucket = "bucketname"
  17. input.Key = "objectkey"
  18. input.SourceFile = "localfile"
  19. output, err := obsClient.PutFile(input)
  20. if err == nil {
  21. fmt.Printf("RequestId:%s\n", output.RequestId)
  22. fmt.Printf("ETag:%s\n", output.ETag)
  23. } else if obsError, ok := err.(obs.ObsError); ok {
  24. fmt.Printf("Code:%s\n", obsError.Code)
  25. fmt.Printf("Message:%s\n", obsError.Message)
  26. }
  27. }

父主题:上传对象