Skip to content

Instantly share code, notes, and snippets.

@yhirose
yhirose / compress.go
Last active February 4, 2016 17:00 — forked from iamralch/compress.go
ZIP archives in Golang
import (
"archive/zip"
"io"
"os"
"path/filepath"
"strings"
)
func zipit(source, target string, needBaseDir bool) error {
zipfile, err := os.Create(target)