func os.Stat

13 uses

	os (current package)
		exec_posix.go#L31: 		if _, err := Stat(attr.Dir); err != nil {
		file.go#L286: 	fi, err := Stat(name)
		file.go#L683: 	f, err := Stat(fullname)
		file_unix.go#L263: 		if _, err := Stat(name); IsNotExist(err) {
		path.go#L20: 	dir, err := Stat(path)
		stat.go#L11: func Stat(name string) (FileInfo, error) {
		tempfile.go#L105: 			if _, err := Stat(dir); IsNotExist(err) {

	net
		conf.go#L411: 					_, err := os.Stat("/etc/mdns.allow")
		dnsclient_unix.go#L399: 		if fi, err := os.Stat(name); err == nil {
		nss.go#L65: 	if fi, err := os.Stat(nssConfigPath); err == nil {
		parse.go#L84: 	st, err := os.Stat(name)

	net/http
		fs.go#L84: 		return nil, mapOpenError(err, fullName, filepath.Separator, os.Stat)

	path/filepath
		match.go#L333: 	fi, err := os.Stat(dir)