Categorygithub.com/jhoonb/archivex
modulepackage
0.0.0-20201016144719-6a343cdae81d
Repository: https://github.com/jhoonb/archivex.git
Documentation: pkg.go.dev

# README

archivex

archivex is a golang package that archives folders (recursively) and files to zip and tar formats.

Originally written by Jhonathan Paulo Banczek here: https://github.com/jhoonb/archivex

Note: The code is heavily modified, so the original interface is no longer compatible.

# Structs

TarFile implement *tar.Writer.
ZipFile implement *zip.Writer.

# Interfaces

interface.

# Type aliases

ArchiveWriteFunc is the closure used by an archive's AddAll method to actually put a file into an archive Note that for directory entries, this func will be called with a nil 'file' param.