micro/util/file/file.go

16 lines
247 B
Go
Raw Normal View History

2019-05-31 01:52:10 +03:00
package file
import "os"
// Exists returns true if the path is existing
func Exists(path string) (bool, error) {
_, err := os.Stat(path)
if err == nil {
return true, nil
}
if os.IsNotExist(err) {
return false, nil
}
return true, err
}