Skip to content

Instantly share code, notes, and snippets.

@iamjarvo
Forked from mattes/check.go
Created May 3, 2024 22:20
Show Gist options
  • Save iamjarvo/cdc6d4a76577ad4fb60585a88d70e2c1 to your computer and use it in GitHub Desktop.
Save iamjarvo/cdc6d4a76577ad4fb60585a88d70e2c1 to your computer and use it in GitHub Desktop.
Check if file or directory exists in Golang
if _, err := os.Stat("/path/to/whatever"); os.IsNotExist(err) {
// path/to/whatever does not exist
}
if _, err := os.Stat("/path/to/whatever"); !os.IsNotExist(err) {
// path/to/whatever exists
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment