func os.Stat

29 uses

	os (current package)
		exec_posix.go#L31: 		if _, err := Stat(attr.Dir); err != nil {
		file.go#L332: 	fi, err := Stat(name)
		file.go#L771: 	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) {

	os/exec
		lp_unix.go#L23: 	d, err := os.Stat(file)

	go.pact.im/x/zapjournal
		zapjournal_linux.go#L21: 	_, err := os.Stat(socketPath)

	go/build
		build.go#L147: 	fi, err := os.Stat(path)

	golang.org/x/tools/go/packages
		golist.go#L635: 				info, _ := os.Stat(filename)
		packages.go#L1425: 		if xi, err := os.Stat(x); err == nil {
		packages.go#L1426: 			if yi, err := os.Stat(y); err == nil {

	golang.org/x/tools/internal/gcimporter
		exportdata.go#L322: 					_, err = os.Stat(filename)
		exportdata.go#L356: 		f, statErr := os.Stat(filename)

	golang.org/x/tools/internal/gocommand
		vendor.go#L70: 	if fi, err := os.Stat(filepath.Join(mainMod.Dir, "vendor")); err == nil && fi.IsDir() {
		vendor.go#L123: 	if fi, err := os.Stat(filepath.Join(filepath.Dir(goWork), "vendor")); err == nil && fi.IsDir() {

	internal/goroot
		gc.go#L92: 		if fi, err := os.Stat(goDir); err == nil && fi.IsDir() {
		gc.go#L95: 			if fi, err = os.Stat(goDir); err == nil && fi.IsDir() {
		gc.go#L99: 		if fi, err := os.Stat(dir); err == nil && fi.IsDir() {
		gc.go#L133: 		if fi, err := os.Stat(full); err == nil && !fi.IsDir() {

	net
		conf.go#L423: 					_, err := os.Stat("/etc/mdns.allow")
		dnsclient_unix.go#L416: 		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)

	runtime/pprof
		pe.go#L14: 	s, err := os.Stat(file)

	testing
		testing.go#L1233: 		_, err := os.Stat(c.tempDir)