-
-
Save jannson/56b756efa9fe96c75481580207911ba8 to your computer and use it in GitHub Desktop.
ZIP archives in Golang
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ( | |
"archive/zip" | |
"io" | |
"os" | |
"path/filepath" | |
"strings" | |
) | |
func zipit(source, target string) error { | |
zipfile, err := os.Create(target) | |
if err != nil { | |
return err | |
} | |
defer zipfile.Close() | |
archive := zip.NewWriter(zipfile) | |
defer archive.Close() | |
info, err := os.Stat(source) | |
if err != nil { | |
return nil | |
} | |
var baseDir string | |
if info.IsDir() { | |
baseDir = filepath.Base(source) | |
} | |
filepath.Walk(source, func(path string, info os.FileInfo, err error) error { | |
if err != nil { | |
return err | |
} | |
header, err := zip.FileInfoHeader(info) | |
if err != nil { | |
return err | |
} | |
if baseDir != "" { | |
header.Name = filepath.Join(baseDir, strings.TrimPrefix(path, source)) | |
} | |
if info.IsDir() { | |
header.Name += "/" | |
} else { | |
header.Method = zip.Deflate | |
} | |
writer, err := archive.CreateHeader(header) | |
if err != nil { | |
return err | |
} | |
if info.IsDir() { | |
return nil | |
} | |
file, err := os.Open(path) | |
if err != nil { | |
return err | |
} | |
defer file.Close() | |
_, err = io.Copy(writer, file) | |
return err | |
}) | |
return err | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ( | |
"archive/zip" | |
"io" | |
"os" | |
"path/filepath" | |
"strings" | |
) | |
func unzip(archive, target string) error { | |
reader, err := zip.OpenReader(archive) | |
if err != nil { | |
return err | |
} | |
if err := os.MkdirAll(target, 0755); err != nil { | |
return err | |
} | |
for _, file := range reader.File { | |
path := filepath.Join(target, file.Name) | |
if file.FileInfo().IsDir() { | |
os.MkdirAll(path, file.Mode()) | |
continue | |
} | |
fileReader, err := file.Open() | |
if err != nil { | |
return err | |
} | |
defer fileReader.Close() | |
targetFile, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, file.Mode()) | |
if err != nil { | |
return err | |
} | |
defer targetFile.Close() | |
if _, err := io.Copy(targetFile, fileReader); err != nil { | |
return err | |
} | |
} | |
return nil | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment