type io/fs.FileInfo

29 uses

	io/fs (current package)
		fs.go#L79: 	Stat() (FileInfo, error)
		fs.go#L105: 	Info() (FileInfo, error)
		fs.go#L150: type FileInfo interface {
		stat.go#L13: 	Stat(name string) (FileInfo, error)
		stat.go#L20: func Stat(fsys FS, name string) (FileInfo, error) {
		walk.go#L121: 	info FileInfo
		walk.go#L127: func (d *statDirEntry) Info() (FileInfo, error) { return d.info, nil }

	io/ioutil
		ioutil.go#L58: func ReadDir(dirname string) ([]fs.FileInfo, error) {

	archive/zip
		reader.go#L205: func (r *checksumReader) Stat() (fs.FileInfo, error) {
		reader.go#L638: 	fs.FileInfo
		reader.go#L658: func (f *fileListEntry) Info() (fs.FileInfo, error) { return f, nil }
		reader.go#L775: func (d *openDir) Stat() (fs.FileInfo, error) { return d.e.stat(), nil }
		struct.go#L141: func (h *FileHeader) FileInfo() fs.FileInfo {
		struct.go#L168: func (fi headerFileInfo) Info() (fs.FileInfo, error) { return fi, nil }
		struct.go#L177: func FileInfoHeader(fi fs.FileInfo) (*FileHeader, error) {

	go/build
		build.go#L104: 	ReadDir func(dir string) ([]fs.FileInfo, error)
		build.go#L186: func (ctxt *Context) readDir(path string) ([]fs.FileInfo, error) {

	go/parser
		interface.go#L135: func ParseDir(fset *token.FileSet, path string, filter func(fs.FileInfo) bool, mode Mode) (pkgs map[string]*ast.Package, first error) {

	net/http
		fs.go#L106: 	Readdir(count int) ([]fs.FileInfo, error)
		fs.go#L107: 	Stat() (fs.FileInfo, error)
		fs.go#L116: type fileInfoDirs []fs.FileInfo
		fs.go#L769: func (f ioFile) Stat() (fs.FileInfo, error) { return f.file.Stat() }
		fs.go#L790: func (f ioFile) Readdir(count int) ([]fs.FileInfo, error) {
		fs.go#L795: 	var list []fs.FileInfo

	os
		types.go#L21: type FileInfo = fs.FileInfo

	path/filepath
		path.go#L376: type WalkFunc func(path string, info fs.FileInfo, err error) error
		path.go#L412: func walk(path string, info fs.FileInfo, walkFn WalkFunc) error {
		path.go#L474: 	info fs.FileInfo
		path.go#L480: func (d *statDirEntry) Info() (fs.FileInfo, error) { return d.info, nil }