type os.FileInfo

44 uses

	os (current package)
		dir.go#L37: func (f *File) Readdir(n int) ([]FileInfo, error) {
		dir.go#L46: 		infos = []FileInfo{}
		dir_darwin.go#L27: func (f *File) readdir(n int, mode readdirMode) (names []string, dirents []DirEntry, infos []FileInfo, err error) {
		file_unix.go#L395: 	info   FileInfo
		file_unix.go#L402: func (d *unixDirent) Info() (FileInfo, error) {
		stat.go#L11: func Stat(name string) (FileInfo, error) {
		stat.go#L20: func Lstat(name string) (FileInfo, error) {
		stat_darwin.go#L49: func atime(fi FileInfo) time.Time {
		stat_unix.go#L15: func (f *File) Stat() (FileInfo, error) {
		stat_unix.go#L29: func statNolog(name string) (FileInfo, error) {
		stat_unix.go#L42: func lstatNolog(name string) (FileInfo, error) {
		types.go#L21: type FileInfo = fs.FileInfo
		types.go#L67: func SameFile(fi1, fi2 FileInfo) bool {

	github.com/go-git/go-billy/v5
		fs.go#L77: 	Stat(filename string) (os.FileInfo, error)
		fs.go#L108: 	ReadDir(path string) ([]os.FileInfo, error)
		fs.go#L122: 	Lstat(filename string) (os.FileInfo, error)

	github.com/go-git/go-billy/v5/helper/chroot
		chroot.go#L85: func (fs *ChrootHelper) Stat(filename string) (os.FileInfo, error) {
		chroot.go#L136: func (fs *ChrootHelper) ReadDir(path string) ([]os.FileInfo, error) {
		chroot.go#L154: func (fs *ChrootHelper) Lstat(filename string) (os.FileInfo, error) {

	github.com/go-git/go-billy/v5/helper/polyfill
		polyfill.go#L42: func (h *Polyfill) ReadDir(path string) ([]os.FileInfo, error) {
		polyfill.go#L74: func (h *Polyfill) Lstat(path string) (os.FileInfo, error) {

	github.com/go-git/go-billy/v5/osfs
		os.go#L56: func (fs *OS) ReadDir(path string) ([]os.FileInfo, error) {
		os.go#L62: 	var s = make([]os.FileInfo, len(l))
		os.go#L86: func (fs *OS) Stat(filename string) (os.FileInfo, error) {
		os.go#L114: func (fs *OS) Lstat(filename string) (os.FileInfo, error) {

	github.com/go-git/go-git/v5
		repository.go#L266: 	var fi os.FileInfo
		worktree.go#L733: func (w *Worktree) doClean(status Status, opts *CleanOptions, dir string, files []os.FileInfo) error {
		worktree_status.go#L438: func (w *Worktree) fillEncodedObjectFromFile(dst io.Writer, path string, fi os.FileInfo) (err error) {
		worktree_status.go#L453: func (w *Worktree) fillEncodedObjectFromSymlink(dst io.Writer, path string, fi os.FileInfo) error {

	github.com/go-git/go-git/v5/plumbing/format/gitignore
		dir.go#L51: 	var fis []os.FileInfo

	github.com/go-git/go-git/v5/storage/filesystem/dotgit
		dotgit.go#L555: func (d *DotGit) ObjectStat(h plumbing.Hash) (os.FileInfo, error) {

	github.com/go-git/go-git/v5/utils/merkletrie/filesystem
		node.go#L114: func (n *node) newChildNode(file os.FileInfo) (*node, error) {
		node.go#L139: func (n *node) calculateHash(path string, file os.FileInfo) ([]byte, error) {
		node.go#L164: func (n *node) doCalculateHashForRegular(path string, file os.FileInfo) (plumbing.Hash, error) {
		node.go#L180: func (n *node) doCalculateHashForSymlink(path string, file os.FileInfo) (plumbing.Hash, error) {

	go.opencensus.io/zpages/internal
		resources.go#L102: func (f *_escFile) Readdir(count int) ([]os.FileInfo, error) {
		resources.go#L106: func (f *_escFile) Stat() (os.FileInfo, error) {

	golang.org/x/mod/zip
		zip.go#L89: 	Lstat() (os.FileInfo, error)
		zip.go#L568: 	info                os.FileInfo
		zip.go#L572: func (f dirFile) Lstat() (os.FileInfo, error)  { return f.info, nil }
		zip.go#L717: 	err = filepath.Walk(dir, func(filePath string, info os.FileInfo, err error) error {

	golang.org/x/pkgsite/internal/fetch
		fetchlocal.go#L133: 	err := filepath.Walk(localPath, func(path string, info os.FileInfo, err error) error {
		load.go#L331: 		ReadDir:       func(string) ([]os.FileInfo, error) { panic("internal error: unexpected call to ReadDir") },

	golang.org/x/pkgsite/internal/frontend
		styleguide.go#L192: 	err := filepath.Walk(dir, func(path string, info os.FileInfo, err error) error {