Searched defs:dirFile (Results 1 – 1 of 1) sorted by relevance
715 type dirFile struct { struct716 filePath, slashPath string717 info os.FileInfo720 func (f dirFile) Path() string { return f.slashPath }721 func (f dirFile) Lstat() (os.FileInfo, error) { return f.info, nil }722 func (f dirFile) Open() (io.ReadCloser, error) { return os.Open(f.filePath) }