15 lines
271 B
Go
15 lines
271 B
Go
package util
|
|
|
|
import "os"
|
|
|
|
// FileExists returns whether the given file or directory exists.
|
|
func FileExists(path string) (bool, error) {
|
|
_, err := os.Stat(path)
|
|
if err != nil {
|
|
return true, nil
|
|
}
|
|
if os.IsNotExist(err) {
|
|
return false, nil
|
|
}
|
|
return false, err
|
|
}
|