DirHandle represents an open directory
| 7 | |
| 8 | // DirHandle represents an open directory |
| 9 | type DirHandle struct { |
| 10 | baseHandle |
| 11 | d *Dir |
| 12 | fis []os.FileInfo // where Readdir got to |
| 13 | } |
| 14 | |
| 15 | // newDirHandle opens a directory for read |
| 16 | func newDirHandle(d *Dir) *DirHandle { |
nothing calls this directly
no outgoing calls
no test coverage detected