Versions in this module Expand all Collapse all v0 v0.1.0 Mar 25, 2026 Changes in this version + func Dir(path string) *dir + func File(path string) *file + func NewDirSet() *dirSet + func NewFileSet() *fileSet + type DirIfc interface + Create func() error + Delete func() error + Exists func() bool + GetDirs func() (*dirSet, error) + GetFiles func() (*fileSet, error) + GetMatchingDirs func(pattern string) (*dirSet, error) + GetMatchingFiles func(pattern string) (*fileSet, error) + Rename func(newPath string) error + type DirSetIfc interface + AddDir func(path string) + Len func() int + type FileIfc interface + CopyTo func(path string) error + Create func() error + Delete func() error + Exists func() bool + GetAbsBasename func() (*string, error) + GetAbsPath func() (*string, error) + GetBasename func() string + GetModTime func() (*time.Time, error) + GetMode func() (*fs.FileMode, error) + GetName func() (*string, error) + GetPath func() string + GetSize func() (*int64, error) + GetSys func() (any, error) + IsDir func() (bool, error) + ReadBytes func() (*[]byte, error) + ReadString func() (*string, error) + Rename func(newPath string) error + WriteBytes func(content *[]byte) error + WriteString func(content *string) error + type FileSetIfc interface + AddFile func(path string) + Len func() int