Skip to content

Instantly share code, notes, and snippets.

View flannel's full-sized avatar

flannel flannel

View GitHub Profile
@flannel
flannel / check.go
Created January 19, 2016 17:49 — forked from mattes/check.go
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"); err == nil {
// path/to/whatever exists
}