zip.go 3.1 KB

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