c4milo / unpackit

Go package to natively decompress and unarchive tar.gz, tar.bzip2, tar.xz, zip and tar files.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UnpackIt

GoDoc Build Status

This Go library allows you to easily unpack the following files using magic numbers:

  • tar.gz
  • tar.bzip2
  • tar.xz
  • zip
  • tar

Usage

Unpack a file:

    file, _ := os.Open(test.filepath)
    err := unpackit.Unpack(file, tempDir)

Unpack a stream (such as a http.Response):

    res, err := http.Get(url)
    err := unpackit.Unpack(res.Body, tempDir)

About

Go package to natively decompress and unarchive tar.gz, tar.bzip2, tar.xz, zip and tar files.

License:Mozilla Public License 2.0


Languages

Language:Go 100.0%