Files
GenerationsHeritage/pkg/fileExists.go
2024-12-22 21:33:46 +01:00

12 lines
162 B
Go

package pkg
import (
"os"
)
// Checks if file on path exists or not
func FileExists(path string) bool {
_, err := os.Stat(path)
return !os.IsNotExist(err)
}