Lines Matching refs:osFs
30 var OsFs FileSystem = osFs{}
92 type osFs struct{} struct
94 var _ FileSystem = (*osFs)(nil)
96 func (osFs) Open(name string) (io.ReadCloser, error) { return os.Open(name) } argument
98 func (osFs) Lstat(path string) (stats os.FileInfo, err error) { argument
102 func (osFs) ReadDir(path string) (contents []DirEntryInfo, err error) { argument
114 func (osFs) Rename(oldPath string, newPath string) error { argument
118 func (osFs) WriteFile(path string, data []byte, perm os.FileMode) error { argument
122 func (osFs) Remove(path string) error { argument
126 func (osFs) RemoveAll(path string) error { argument
130 func (osFs) ViewId() (id string) { argument