Lines Matching refs:osFs
30 var OsFs FileSystem = osFs{}
93 type osFs struct{} struct
95 var _ FileSystem = (*osFs)(nil)
97 func (osFs) Open(name string) (io.ReadCloser, error) { return os.Open(name) } argument
99 func (osFs) Lstat(path string) (stats os.FileInfo, err error) { argument
103 func (osFs) Stat(path string) (stats os.FileInfo, err error) { argument
107 func (osFs) ReadDir(path string) (contents []DirEntryInfo, err error) { argument
119 func (osFs) Rename(oldPath string, newPath string) error { argument
123 func (osFs) WriteFile(path string, data []byte, perm os.FileMode) error { argument
127 func (osFs) Remove(path string) error { argument
131 func (osFs) RemoveAll(path string) error { argument
135 func (osFs) ViewId() (id string) { argument