/memzip

A simple wrapper in Go for creating archives in memory

Primary LanguageGoMIT LicenseMIT

Memzip

Brief Overview

  • MemZip is a simple Golang package which acts as a wrapper for the archive/zip package.
  • It is very useful for making zip archives in memory so that no files need to be dropped.
  • It supports copying existing files and directories, as well as writing new ones.

Installation

  • MemZip can be installed using the go get github.com/SecDbg/memzip command.

Usage

  • An example of how MemZip can be used can be found in the example/main.go file.