Skip to content

Instantly share code, notes, and snippets.

View reckedpr's full-sized avatar
‼️
opnsense supremecy

reckedpr

‼️
opnsense supremecy
  • United Kingdom
  • 08:52 (UTC +01:00)
View GitHub Profile
@mattes
mattes / check.go
Last active February 11, 2026 19:47
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
}