zip.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. fmt.Println("--------------------------------------------------------")
  55. fmt.Println(rootPath)
  56. if err != nil {
  57. return err
  58. }
  59. if info.IsDir() {
  60. // header.Name += string(os.PathSeparator)
  61. header.Name += string(os.PathSeparator)
  62. fmt.Println(header.Name)
  63. }
  64. // Create writer for the file header and save content of the file.
  65. headerWriter, err := zipWriter.CreateHeader(header)
  66. if err != nil {
  67. return err
  68. }
  69. if info.IsDir() {
  70. return nil
  71. }
  72. fmt.Println(path)
  73. fmt.Println(header.Name)
  74. f, err := os.Open(path)
  75. if err != nil {
  76. return err
  77. }
  78. defer f.Close()
  79. _, err = io.Copy(headerWriter, f)
  80. return err
  81. }
  82. }
  83. func ZipFile(srcFile, destFile string) error {
  84. // 创建目标文件,即zip文件
  85. zipFile, err := os.Create(destFile)
  86. if err != nil {
  87. return err
  88. }
  89. defer zipFile.Close()
  90. // 创建writer,准备向目标文件中写入数据
  91. writer := zip.NewWriter(zipFile)
  92. defer writer.Close()
  93. // 遍历文件(如果srcFile是个目录的话)
  94. err = filepath.Walk(srcFile, func(path string, info os.FileInfo, err error) error {
  95. // 遍历发生错误,退出
  96. if err != nil {
  97. return err
  98. }
  99. // 创建zip文件信息头
  100. header, err := zip.FileInfoHeader(info)
  101. if err != nil {
  102. return err
  103. }
  104. header.Name = path
  105. if info.IsDir() {
  106. header.Name += "\\"
  107. } else {
  108. header.Method = zip.Deflate
  109. }
  110. // 将信息头写入到writer中
  111. writer, err := writer.CreateHeader(header)
  112. if err != nil {
  113. return err
  114. }
  115. // 如果是目录,直接写个头就可以了,filepath.Walk会继续遍历目录
  116. if info.IsDir() {
  117. return nil
  118. }
  119. // 如果是文件,则将文件内容写入到writer中
  120. file, err := os.Open(path)
  121. if err != nil {
  122. return err
  123. }
  124. defer file.Close()
  125. _, err = io.Copy(writer, file)
  126. return err
  127. })
  128. return err
  129. }