func os.Stat

30 uses

	os (current package)
		exec_posix.go#L31: 		if _, err := Stat(attr.Dir); err != nil {
		file.go#L290: 	fi, err := Stat(name)
		file.go#L658: 	f, err := Stat(string(dir) + "/" + name)
		file_unix.go#L208: 		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) {

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

	github.com/go-pg/migrations/v8
		collection.go#L752: 	_, err = os.Stat(filename)

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

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

	golang.org/x/tools/go/packages
		golist.go#L689: 				info, _ := os.Stat(filename)
		golist_overlay.go#L278: 			info, err := os.Stat(vendorDir)
		golist_overlay.go#L285: 			if info, err := os.Stat(vendoredPath); err == nil && info.IsDir() {
		packages.go#L1196: 		if xi, err := os.Stat(x); err == nil {
		packages.go#L1197: 			if yi, err := os.Stat(y); err == nil {

	golang.org/x/tools/internal/gcimporter
		gcimporter.go#L133: 		if f, err := os.Stat(filename); err == nil && !f.IsDir() {
		gcimporter.go#L141: 		if f, err := os.Stat(filename); err == nil && !f.IsDir() {

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

	internal/goroot
		gc.go#L23: 		_, err := os.Stat(dir)
		gc.go#L84: 		if fi, err := os.Stat(goDir); err == nil && fi.IsDir() {
		gc.go#L87: 			if fi, err = os.Stat(goDir); err == nil && fi.IsDir() {
		gc.go#L91: 		if fi, err := os.Stat(dir); err == nil && fi.IsDir() {
		gc.go#L125: 		if fi, err := os.Stat(full); err == nil && !fi.IsDir() {

	net
		conf.go#L111: 	if _, err := os.Stat("/etc/mdns.allow"); err == nil {
		dnsclient_unix.go#L369: 	if fi, err := os.Stat(name); err == nil {
		parse.go#L76: 	st, err := os.Stat(name)

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

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

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