func os.Stat

36 uses

	os (current package)
		exec_posix.go#L30: 		if _, err := Stat(attr.Dir); err != nil {
		file.go#L283: 	fi, err := Stat(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#L102: 			if _, err := Stat(dir); IsNotExist(err) {

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

	github.com/evanw/esbuild/internal/fs
		fs_real.go#L398: 				info, err := os.Stat(path)
		fs_real.go#L419: 				info, err := os.Stat(path)

	github.com/go-git/go-billy/v5/osfs
		os.go#L87: 	return os.Stat(filename)

	github.com/go-git/go-billy/v5/util
		util.go#L198: 			if _, err := os.Stat(dir); os.IsNotExist(err) {

	github.com/go-git/go-git/v5
		repository.go#L380: 	fi, err := os.Stat(path)

	github.com/go-git/go-git/v5/plumbing/transport/ssh
		auth_method.go#L282: 		_, err := os.Stat(file)

	github.com/jackc/pgconn
		defaults.go#L45: 		if _, err := os.Stat(path); err == nil {

	github.com/lib/pq
		conn.go#L196: 	fileinfo, err := os.Stat(filename)
		ssl.go#L34: 			if _, err := os.Stat(sslrootcert); err == nil {
		ssl.go#L103: 	if _, err := os.Stat(sslcert); os.IsNotExist(err) {
		ssl_permissions.go#L12: 	info, err := os.Stat(sslkey)

	github.com/prometheus/procfs
		proc.go#L92: 	if _, err := os.Stat(fs.proc.Path(strconv.Itoa(pid))); err != nil {
		vm.go#L82: 	file, err := os.Stat(path)

	github.com/prometheus/procfs/internal/fs
		fs.go#L40: 	info, err := os.Stat(mountPoint)

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

	golang.org/x/pkgsite/internal/fetch
		fetchlocal.go#L59: 	info, err := os.Stat(localPath)

	golang.org/x/pkgsite/internal/localdatasource
		datasource.go#L101: 		info, err := os.Stat(path)

	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() {

	io/ioutil
		tempfile.go#L127: 			if _, err := os.Stat(dir); os.IsNotExist(err) {

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

	net/http
		fs.go#L58: 		fi, err := os.Stat(strings.Join(parts[:i+1], string(filepath.Separator)))

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

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