Skip to content

Instantly share code, notes, and snippets.

@StephaneTy-Pro
Created April 27, 2016 07:50
Show Gist options
  • Save StephaneTy-Pro/b7e35701ab5290dcbc6ff5565ef4663b to your computer and use it in GitHub Desktop.
Save StephaneTy-Pro/b7e35701ab5290dcbc6ff5565ef4663b to your computer and use it in GitHub Desktop.
Snippets for fileExists in Go
func fileExists(filename string) bool {
_, err := os.Stat(filename)
return err == nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment