const Separator …
const SelfDir …
const ParentDir …
type FileSystem …
func ConfirmDir(fSys FileSystem, path string) (ConfirmedDir, error) { … }
type FileSystemOrOnDisk …
func (fs *FileSystemOrOnDisk) Set(f FileSystem) { … }
func (fs FileSystemOrOnDisk) fs() FileSystem { … }
func (fs FileSystemOrOnDisk) Create(path string) (File, error) { … }
func (fs FileSystemOrOnDisk) Mkdir(path string) error { … }
func (fs FileSystemOrOnDisk) MkdirAll(path string) error { … }
func (fs FileSystemOrOnDisk) RemoveAll(path string) error { … }
func (fs FileSystemOrOnDisk) Open(path string) (File, error) { … }
func (fs FileSystemOrOnDisk) IsDir(path string) bool { … }
func (fs FileSystemOrOnDisk) ReadDir(path string) ([]string, error) { … }
func (fs FileSystemOrOnDisk) CleanedAbs(path string) (ConfirmedDir, string, error) { … }
func (fs FileSystemOrOnDisk) Exists(path string) bool { … }
func (fs FileSystemOrOnDisk) Glob(pattern string) ([]string, error) { … }
func (fs FileSystemOrOnDisk) ReadFile(path string) ([]byte, error) { … }
func (fs FileSystemOrOnDisk) WriteFile(path string, data []byte) error { … }
func (fs FileSystemOrOnDisk) Walk(path string, walkFn filepath.WalkFunc) error { … }