Skip to content

Instantly share code, notes, and snippets.

View erikfwhite's full-sized avatar

Erik White erikfwhite

  • Ascolta, LLC
  • Leesburg, VA
  • 23:10 (UTC -04:00)
View GitHub Profile
@mattes
mattes / check.go
Last active May 3, 2024 22:20
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
}