Skip to content

Instantly share code, notes, and snippets.

View mmontes11's full-sized avatar
🌴
Taking a break

Martin Montes mmontes11

🌴
Taking a break
View GitHub Profile
@mmontes11
mmontes11 / compress_tar_gzip.go
Created May 5, 2025 18:02 — forked from mimoo/compress_tar_gzip.go
How to compress a folder in Golang using tar and gzip (works with nested folders)
package main
import (
"archive/tar"
"bytes"
"compress/gzip"
"fmt"
"io"
"os"
"path/filepath"