main.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package upload
  2. // import (
  3. // "errors"
  4. // "fmt"
  5. // "os"
  6. // "path/filepath"
  7. // "runtime"
  8. // "strings"
  9. // )
  10. // func UploadExe() (string, error) {
  11. // // 获取当前执行程序
  12. // // G:\wk\lancher-svc\src\lancher.exe
  13. // appExePath, _ := os.Executable()
  14. // // G:/wk/lancher-svc/src/lancher.exe
  15. // appExePath = strings.Replace(appExePath, "\\", "/", -1)
  16. // // G:/wk/lancher-svc/src/
  17. // appExeDir, _ := filepath.Split(appExePath)
  18. // fmt.Println(appExeDir)
  19. // // 压缩当前执行程序
  20. // // 压缩单个文件
  21. // // 压缩文件名 lancher1.0.2.windows-amd64.zip
  22. // zipFile := fmt.Sprintf("%s%s.%s-%s.zip", "lancher", Version, runtime.GOOS, runtime.GOARCH)
  23. // zipPath := fmt.Sprintf("%s%s", appExeDir, zipFile)
  24. // err := ZipFile(zipPath, appExePath)
  25. // if err != nil {
  26. // return "", err
  27. // }
  28. // // 获取操作系统和版本号确定上传文件名
  29. // obsDir := "pkg"
  30. // //上传压缩后的文件到obs
  31. // // http://spu3dv1.obs.cn-east-3.myhuaweicloud.com/pkg/lancher1.0.2.windows-amd64.zip
  32. // huawei.InitConfig()
  33. // obs, err := huawei.UploadFile(zipPath, obsDir, zipFile)
  34. // if err != nil {
  35. // return "", err
  36. // }
  37. // if len(obs.Url) < 1 {
  38. // fmt.Println("上传zipfile错误")
  39. // return "", errors.New("上传zipfile错误")
  40. // }
  41. // fmt.Println("succ uploaded=>", obs.Url)
  42. // return zipPath, nil
  43. // }