io/fs.DirEntry.Name (method)

11 uses

	io/fs (current package)
		fs.go#L90: 	Name() string
		glob.go#L97: 		n := info.Name()
		readdir.go#L45: 	sort.Slice(list, func(i, j int) bool { return list[i].Name() < list[j].Name() })
		walk.go#L84: 		name1 := path.Join(name, d1.Name())

	net/http
		fs.go#L126: func (d dirEntryDirs) name(i int) string { return d[i].Name() }

	os
		dir.go#L123: 	sort.Slice(dirs, func(i, j int) bool { return dirs[i].Name() < dirs[j].Name() })

	path/filepath
		path.go#L400: 		path1 := Join(path, d1.Name())
		path.go#L521: 	sort.Slice(dirs, func(i, j int) bool { return dirs[i].Name() < dirs[j].Name() })