package utils import "os" func DoesPathExist(path string) bool { if _, err := os.Stat(path); err == nil { return true } return false }