func os.Stat

13 uses

	os (current package)
		exec_posix.go#L31: 		if _, err := Stat(attr.Dir); err != nil {
		file.go#L332: 	fi, err := Stat(name)
		file.go#L755: 	f, err := Stat(fullname)
		file_unix.go#L267: 		if _, err := Stat(name); IsNotExist(err) {
		path.go#L21: 	dir, err := Stat(path)
		stat.go#L11: func Stat(name string) (FileInfo, error) {
		tempfile.go#L111: 			if _, err := Stat(dir); IsNotExist(err) {

	net
		conf.go#L413: 					_, err := os.Stat("/etc/mdns.allow")
		dnsclient_unix.go#L415: 		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#L88: 		return nil, mapOpenError(err, fullName, filepath.Separator, os.Stat)

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