type io/fs.FileInfo
25 uses
io/fs (current package)
format.go#L17: func FormatFileInfo(info FileInfo) string {
fs.go#L85: Stat() (FileInfo, error)
fs.go#L111: Info() (FileInfo, error)
fs.go#L157: type FileInfo interface {
readdir.go#L54: fileInfo FileInfo
readdir.go#L65: func (di dirInfo) Info() (FileInfo, error) {
readdir.go#L79: func FileInfoToDirEntry(info FileInfo) DirEntry {
stat.go#L13: Stat(name string) (FileInfo, error)
stat.go#L20: func Stat(fsys FS, name string) (FileInfo, error) {
embed
embed.go#L214: _ fs.FileInfo = (*file)(nil)
embed.go#L224: func (f *file) Info() (fs.FileInfo, error) { return f, nil }
embed.go#L345: func (f *openFile) Stat() (fs.FileInfo, error) { return f.f, nil }
embed.go#L394: func (d *openDir) Stat() (fs.FileInfo, error) { return d.f, nil }
net/http
fs.go#L49: func mapOpenError(originalErr error, name string, sep rune, stat func(string) (fs.FileInfo, error)) error {
fs.go#L112: Readdir(count int) ([]fs.FileInfo, error)
fs.go#L113: Stat() (fs.FileInfo, error)
fs.go#L122: type fileInfoDirs []fs.FileInfo
fs.go#L887: return nil, mapOpenError(err, name, '/', func(path string) (fs.FileInfo, error) {
fs.go#L896: func (f ioFile) Stat() (fs.FileInfo, error) { return f.file.Stat() }
fs.go#L917: func (f ioFile) Readdir(count int) ([]fs.FileInfo, error) {
fs.go#L922: var list []fs.FileInfo
os
file.go#L750: func (dir dirFS) Stat(name string) (fs.FileInfo, error) {
types.go#L23: type FileInfo = fs.FileInfo
path/filepath
path.go#L304: type WalkFunc func(path string, info fs.FileInfo, err error) error
path.go#L343: func walk(path string, info fs.FileInfo, walkFn WalkFunc) error {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |