mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
17 lines
271 B
Go
17 lines
271 B
Go
package fsutil
|
|
|
|
import "os"
|
|
|
|
// Exists determines whether a file/directory exists or not.
|
|
func Exists(fpath string) (bool, error) {
|
|
_, err := os.Stat(fpath)
|
|
if err != nil {
|
|
if !os.IsNotExist(err) {
|
|
return false, err
|
|
}
|
|
return false, nil
|
|
}
|
|
|
|
return true, nil
|
|
}
|