Created
April 27, 2016 07:50
-
-
Save StephaneTy-Pro/b7e35701ab5290dcbc6ff5565ef4663b to your computer and use it in GitHub Desktop.
Snippets for fileExists in Go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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