io/fs.FileInfo.IsDir (method)

22 uses

	io/fs (current package)
		format.go#L47: 	if info.IsDir() {
		fs.go#L163: 	IsDir() bool        // abbreviation for Mode().IsDir()
		readdir.go#L58: 	return di.fileInfo.IsDir()

	go/build
		build.go#L148: 	return err == nil && fi.IsDir()

	golang.org/x/tools/internal/gcimporter
		exportdata.go#L357: 		if statErr == 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() {
		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/http
		fs.go#L63: 		if !fi.IsDir() {
		fs.go#L125: func (d fileInfoDirs) isDir(i int) bool  { return d[i].IsDir() }
		fs.go#L704: 		if d.IsDir() {
		fs.go#L722: 	if d.IsDir() {
		fs.go#L744: 	if d.IsDir() {

	os
		file_unix.go#L28: 	if err == nil && fi.IsDir() {
		path.go#L23: 		if dir.IsDir() {
		path.go#L60: 		if err1 == nil && dir.IsDir() {

	path/filepath
		match.go#L338: 	if !fi.IsDir() {
		path.go#L344: 	if !info.IsDir() {
		path.go#L371: 				if !fileInfo.IsDir() || err != SkipDir {