- 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.
- MemZip can be installed using the
go get github.com/SecDbg/memzip
command.
- An example of how MemZip can be used can be found in the
example/main.go
file.