Skip to content

Instantly share code, notes, and snippets.

@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"