Versions in this module Expand all Collapse all v1 v1.0.1 Jan 9, 2021 v1.0.0 Jan 9, 2021 Changes in this version + var ErrEmptySource = errors.New("empty source") + var ErrIsDir = errors.New("is dir") + func Gzip(source, targetPath, targetFilename string) error + func GzipToFileIO(reader, target *os.File) (err error) + func Tar(sources []string, targetPath, targetFilename string) error + func TarToFileIO(sources []string, target *os.File) (err error) + func TarToWriter(sources []string, target *tar.Writer) (err error) + func Tgz(sources []string, targetPath, targetFilename string) error + func TgzToFileIO(sources []string, target *os.File) (err error) + func UnGzip(source, target string) error + func UnGzipFromFileIO(reader, target *os.File) error + func UnTar(tarball, target string) error + func UnTarFromFileIO(tarball *os.File, target string) error + func UnTarFromReader(reader *tar.Reader, target string) error + func UnTgz(tarball, target string) error + func UnTgzFromFileIO(tarball *os.File, target string) (err error)