12 lines
143 B
Go
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
|
|
}
|