123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- package utils
- import (
- "archive/zip"
- "fmt"
- "io"
- "os"
- "path/filepath"
- )
- // func Zip(zipPath string, paths ...string) error {
- // // Create zip file and it's parent dir.
- // if err := os.MkdirAll(filepath.Dir(zipPath), os.ModePerm); err != nil {
- // return err
- // }
- // archive, err := os.Create(zipPath)
- // if err != nil {
- // return err
- // }
- // defer archive.Close()
- // // New zip writer.
- // zipWriter := zip.NewWriter(archive)
- // defer zipWriter.Close()
- // // Traverse the file or directory.
- // for _, rootPath := range paths {
- // // Remove the trailing path separator if path is a directory.
- // rootPath = strings.TrimSuffix(rootPath, string(os.PathSeparator))
- // // Visit all the files or directories in the tree.
- // err = filepath.Walk(rootPath, walkFunc(rootPath, zipWriter))
- // if err != nil {
- // return err
- // }
- // }
- // return nil
- // }
- // func walkFunc(rootPath string, zipWriter *zip.Writer) filepath.WalkFunc {
- // return func(path string, info fs.FileInfo, err error) error {
- // if err != nil {
- // return err
- // }
- // // If a file is a symbolic link it will be skipped.
- // if info.Mode()&os.ModeSymlink != 0 {
- // return nil
- // }
- // // Create a local file header.
- // header, err := zip.FileInfoHeader(info)
- // if err != nil {
- // return err
- // }
- // // Set compression method.
- // header.Method = zip.Deflate
- // // Set relative path of a file as the header name.
- // header.Name, err = filepath.Rel(filepath.Dir(rootPath), path)
- // if err != nil {
- // return err
- // }
- // if info.IsDir() {
- // header.Name += string(os.PathSeparator)
- // }
- // // Create writer for the file header and save content of the file.
- // headerWriter, err := zipWriter.CreateHeader(header)
- // if err != nil {
- // return err
- // }
- // if info.IsDir() {
- // return nil
- // }
- // f, err := os.Open(path)
- // if err != nil {
- // return err
- // }
- // defer f.Close()
- // _, err = io.Copy(headerWriter, f)
- // return err
- // }
- // }
- func Zip(zip_file_name string, src_dir string) {
- // 预防:旧文件无法覆盖
- os.RemoveAll(zip_file_name)
- // 创建:zip文件
- zipfile, _ := os.Create(zip_file_name)
- defer zipfile.Close()
- // 打开:zip文件
- archive := zip.NewWriter(zipfile)
- defer archive.Close()
- // 遍历路径信息
- filepath.Walk(src_dir, func(path string, info os.FileInfo, _ error) error {
- // 如果是源路径,提前进行下一个遍历
- if path == src_dir {
- return nil
- }
- // 获取:文件头信息
- header, _ := zip.FileInfoHeader(info)
- // path, _ = filepath.Rel(src_dir, path)
- fmt.Println(path)
- header.Name, _ = filepath.Rel(src_dir, path)
- // 判断:文件是不是文件夹
- if info.IsDir() {
- header.Name += `/`
- } else {
- // 设置:zip的文件压缩算法
- header.Method = zip.Deflate
- }
- // 创建:压缩包头部信息
- writer, _ := archive.CreateHeader(header)
- if !info.IsDir() {
- file, _ := os.Open(path)
- defer file.Close()
- io.Copy(writer, file)
- }
- return nil
- })
- }
|