// exists returns whether the given file or directory existsfunc exists(path string) (bool, error) { _, err := os.Stat(path) if err == nil { return true, nil } if os.IsNotExist(err) { return false, nil } return false, err}
欢迎分享,转载请注明来源:内存溢出
// exists returns whether the given file or directory existsfunc exists(path string) (bool, error) { _, err := os.Stat(path) if err == nil { return true, nil } if os.IsNotExist(err) { return false, nil } return false, err}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)