Skip to content

Instantly share code, notes, and snippets.

@picatz
Created January 21, 2018 19:34
Show Gist options
  • Save picatz/84701d2b657934c10fc190cbc09a1f6b to your computer and use it in GitHub Desktop.
Save picatz/84701d2b657934c10fc190cbc09a1f6b to your computer and use it in GitHub Desktop.
func Exists(path string) bool {
if _, err := os.Stat(path); err == nil {
return true
}
return false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment