Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 481 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 481 Bytes

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.