Files
latosa-escrima/backend/utils/path_exists.go
2025-01-20 10:27:54 +01:00

12 lines
143 B
Go

package utils
import "os"
func DoesPathExist(path string) bool {
if _, err := os.Stat(path); err == nil {
return true
}
return false
}