type OSInterface …
type RealOS …
func (RealOS) MkdirAll(path string, perm os.FileMode) error { … }
func (RealOS) Symlink(oldname string, newname string) error { … }
func (RealOS) Stat(path string) (os.FileInfo, error) { … }
func (RealOS) Remove(path string) error { … }
func (RealOS) RemoveAll(path string) error { … }
func (RealOS) Create(path string) (*os.File, error) { … }
func (RealOS) Chmod(path string, perm os.FileMode) error { … }
func (RealOS) Hostname() (name string, err error) { … }
func (RealOS) Chtimes(path string, atime time.Time, mtime time.Time) error { … }
func (RealOS) Pipe() (r *os.File, w *os.File, err error) { … }
func (RealOS) ReadDir(dirname string) ([]os.DirEntry, error) { … }
func (RealOS) Glob(pattern string) ([]string, error) { … }
func (RealOS) Open(name string) (*os.File, error) { … }
func (RealOS) OpenFile(name string, flag int, perm os.FileMode) (*os.File, error) { … }
func (RealOS) Rename(oldpath, newpath string) error { … }