mirror of
https://github.com/c4milo/unpackit.git
synced 2025-09-27 03:05:55 +08:00
6aa6b5c056282ab63ebea5c2eb4238ecc2f2df2d
UnzipIt

This Go library allows you to easily unpack the following files:
- tar.gz
- tar.bzip2
- zip
- tar
There are not CGO involved nor hard dependencies of any type.
Usage
Unpack a file:
file, err := os.Open(test.filepath)
ok(t, err)
defer file.Close()
destPath, err := unzipit.Unpack(file, tempDir)
Unpack a stream (such as a http.Response):
res, err := http.Get(url)
destPath, err := unzipit.UnpackStream(res.Body, tempDir)
Languages
Go
100%