zip.go 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. package utils
  2. import (
  3. "archive/zip"
  4. "fmt"
  5. "io"
  6. "os"
  7. "path/filepath"
  8. )
  9. // func Zip(zipPath string, paths ...string) error {
  10. // // Create zip file and it's parent dir.
  11. // if err := os.MkdirAll(filepath.Dir(zipPath), os.ModePerm); err != nil {
  12. // return err
  13. // }
  14. // archive, err := os.Create(zipPath)
  15. // if err != nil {
  16. // return err
  17. // }
  18. // defer archive.Close()
  19. // // New zip writer.
  20. // zipWriter := zip.NewWriter(archive)
  21. // defer zipWriter.Close()
  22. // // Traverse the file or directory.
  23. // for _, rootPath := range paths {
  24. // // Remove the trailing path separator if path is a directory.
  25. // rootPath = strings.TrimSuffix(rootPath, string(os.PathSeparator))
  26. // // Visit all the files or directories in the tree.
  27. // err = filepath.Walk(rootPath, walkFunc(rootPath, zipWriter))
  28. // if err != nil {
  29. // return err
  30. // }
  31. // }
  32. // return nil
  33. // }
  34. // func walkFunc(rootPath string, zipWriter *zip.Writer) filepath.WalkFunc {
  35. // return func(path string, info fs.FileInfo, err error) error {
  36. // if err != nil {
  37. // return err
  38. // }
  39. // // If a file is a symbolic link it will be skipped.
  40. // if info.Mode()&os.ModeSymlink != 0 {
  41. // return nil
  42. // }
  43. // // Create a local file header.
  44. // header, err := zip.FileInfoHeader(info)
  45. // if err != nil {
  46. // return err
  47. // }
  48. // // Set compression method.
  49. // header.Method = zip.Deflate
  50. // // Set relative path of a file as the header name.
  51. // header.Name, err = filepath.Rel(filepath.Dir(rootPath), path)
  52. // if err != nil {
  53. // return err
  54. // }
  55. // if info.IsDir() {
  56. // header.Name += string(os.PathSeparator)
  57. // }
  58. // // Create writer for the file header and save content of the file.
  59. // headerWriter, err := zipWriter.CreateHeader(header)
  60. // if err != nil {
  61. // return err
  62. // }
  63. // if info.IsDir() {
  64. // return nil
  65. // }
  66. // f, err := os.Open(path)
  67. // if err != nil {
  68. // return err
  69. // }
  70. // defer f.Close()
  71. // _, err = io.Copy(headerWriter, f)
  72. // return err
  73. // }
  74. // }
  75. func Zip(zip_file_name string, src_dir string) {
  76. // 预防:旧文件无法覆盖
  77. os.RemoveAll(zip_file_name)
  78. // 创建:zip文件
  79. zipfile, _ := os.Create(zip_file_name)
  80. defer zipfile.Close()
  81. // 打开:zip文件
  82. archive := zip.NewWriter(zipfile)
  83. defer archive.Close()
  84. // 遍历路径信息
  85. filepath.Walk(src_dir, func(path string, info os.FileInfo, _ error) error {
  86. // 如果是源路径,提前进行下一个遍历
  87. if path == src_dir {
  88. return nil
  89. }
  90. // 获取:文件头信息
  91. header, _ := zip.FileInfoHeader(info)
  92. // path, _ = filepath.Rel(src_dir, path)
  93. fmt.Println(path)
  94. header.Name, _ = filepath.Rel(src_dir, path)
  95. // 判断:文件是不是文件夹
  96. if info.IsDir() {
  97. header.Name += `/`
  98. } else {
  99. // 设置:zip的文件压缩算法
  100. header.Method = zip.Deflate
  101. }
  102. // 创建:压缩包头部信息
  103. writer, _ := archive.CreateHeader(header)
  104. if !info.IsDir() {
  105. file, _ := os.Open(path)
  106. defer file.Close()
  107. io.Copy(writer, file)
  108. }
  109. return nil
  110. })
  111. }