zip.go 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. package utils
  2. import (
  3. "archive/zip"
  4. "fmt"
  5. "io"
  6. "io/fs"
  7. "os"
  8. "path/filepath"
  9. "strings"
  10. )
  11. func Zip(zipPath string, paths ...string) error {
  12. // Create zip file and it's parent dir.
  13. if err := os.MkdirAll(filepath.Dir(zipPath), os.ModePerm); err != nil {
  14. return err
  15. }
  16. archive, err := os.Create(zipPath)
  17. if err != nil {
  18. return err
  19. }
  20. defer archive.Close()
  21. // New zip writer.
  22. zipWriter := zip.NewWriter(archive)
  23. defer zipWriter.Close()
  24. // Traverse the file or directory.
  25. for _, rootPath := range paths {
  26. // Remove the trailing path separator if path is a directory.
  27. rootPath = strings.TrimSuffix(rootPath, string(os.PathSeparator))
  28. // Visit all the files or directories in the tree.
  29. err = filepath.Walk(rootPath, walkFunc(rootPath, zipWriter))
  30. if err != nil {
  31. return err
  32. }
  33. }
  34. return nil
  35. }
  36. func walkFunc(rootPath string, zipWriter *zip.Writer) filepath.WalkFunc {
  37. return func(path string, info fs.FileInfo, err error) error {
  38. if err != nil {
  39. return err
  40. }
  41. // If a file is a symbolic link it will be skipped.
  42. if info.Mode()&os.ModeSymlink != 0 {
  43. return nil
  44. }
  45. // Create a local file header.
  46. header, err := zip.FileInfoHeader(info)
  47. if err != nil {
  48. return err
  49. }
  50. // Set compression method.
  51. header.Method = zip.Deflate
  52. // Set relative path of a file as the header name.
  53. header.Name, err = filepath.Rel(rootPath, path)
  54. if err != nil {
  55. return err
  56. }
  57. if info.IsDir() {
  58. // header.Name += string(os.PathSeparator)
  59. header.Name += string(os.PathSeparator)
  60. }
  61. // Create writer for the file header and save content of the file.
  62. headerWriter, err := zipWriter.CreateHeader(header)
  63. if err != nil {
  64. return err
  65. }
  66. if info.IsDir() {
  67. return nil
  68. }
  69. fmt.Println(header.Name)
  70. f, err := os.Open(path)
  71. if err != nil {
  72. return err
  73. }
  74. defer f.Close()
  75. _, err = io.Copy(headerWriter, f)
  76. return err
  77. }
  78. }
  79. func ZipFile(srcFile, destFile string) error {
  80. // 创建目标文件,即zip文件
  81. zipFile, err := os.Create(destFile)
  82. if err != nil {
  83. return err
  84. }
  85. defer zipFile.Close()
  86. // 创建writer,准备向目标文件中写入数据
  87. writer := zip.NewWriter(zipFile)
  88. defer writer.Close()
  89. // 遍历文件(如果srcFile是个目录的话)
  90. err = filepath.Walk(srcFile, func(path string, info os.FileInfo, err error) error {
  91. // 遍历发生错误,退出
  92. if err != nil {
  93. return err
  94. }
  95. // 创建zip文件信息头
  96. header, err := zip.FileInfoHeader(info)
  97. if err != nil {
  98. return err
  99. }
  100. header.Name = path
  101. if info.IsDir() {
  102. header.Name += "\\"
  103. } else {
  104. header.Method = zip.Deflate
  105. }
  106. // 将信息头写入到writer中
  107. writer, err := writer.CreateHeader(header)
  108. if err != nil {
  109. return err
  110. }
  111. // 如果是目录,直接写个头就可以了,filepath.Walk会继续遍历目录
  112. if info.IsDir() {
  113. return nil
  114. }
  115. // 如果是文件,则将文件内容写入到writer中
  116. file, err := os.Open(path)
  117. if err != nil {
  118. return err
  119. }
  120. defer file.Close()
  121. _, err = io.Copy(writer, file)
  122. return err
  123. })
  124. return err
  125. }