Skip to content

Instantly share code, notes, and snippets.

View hdashk's full-sized avatar

Harsh Gupta hdashk

  • San Francisco, CA
View GitHub Profile
@hdashk
hdashk / hashDir.go
Last active May 28, 2023 15:05
Method to recursively hash a directory.
package main
import (
"crypto/md5"
"encoding/hex"
"fmt"
"io/ioutil"
"log"
"os"
"path/filepath"