type io/fs.DirEntry
15 uses
io/fs (current package)
fs.go#L86: type DirEntry interface {
fs.go#L129: ReadDir(n int) ([]DirEntry, error)
readdir.go#L19: ReadDir(name string) ([]DirEntry, error)
readdir.go#L28: func ReadDir(fsys FS, name string) ([]DirEntry, error) {
sub.go#L90: func (f *subFS) ReadDir(name string) ([]DirEntry, error) {
walk.go#L62: type WalkDirFunc func(path string, d DirEntry, err error) error
walk.go#L65: func walkDir(fsys FS, name string, d DirEntry, walkDirFn WalkDirFunc) error {
archive/zip
reader.go#L639: fs.DirEntry
reader.go#L781: func (d *openDir) ReadDir(count int) ([]fs.DirEntry, error) {
reader.go#L792: list := make([]fs.DirEntry, n)
net/http
fs.go#L122: type dirEntryDirs []fs.DirEntry
fs.go#L782: func (f ioFile) ReadDir(count int) ([]fs.DirEntry, error) {
os
dir.go#L82: type DirEntry = fs.DirEntry
path/filepath
path.go#L381: func walkDir(path string, d fs.DirEntry, walkDirFn fs.WalkDirFunc) error {
path.go#L511: func readDir(dirname string) ([]fs.DirEntry, error) {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |