io/fs.DirEntry.IsDir (method)
9 uses
io/fs (current package)
format.go#L72: if dir.IsDir() {
fs.go#L93: IsDir() bool
walk.go#L73: if err := walkDirFn(name, d, nil); err != nil || !d.IsDir() {
walk.go#L74: if err == SkipDir && d.IsDir() {
walk.go#L86: if err == SkipDir && d.IsDir() {
net/http
fs.go#L127: func (d dirEntryDirs) isDir(i int) bool { return d[i].IsDir() }
path/filepath
path.go#L442: if err := walkDirFn(path, d, nil); err != nil || !d.IsDir() {
path.go#L443: if err == SkipDir && d.IsDir() {
path.go#L455: if err == SkipDir && d.IsDir() {
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |