Documentation
¶
Index ¶
- type Filesystem
- func (f *Filesystem) Create(name string) (afero.File, error)
- func (f *Filesystem) DirExists(path string) (bool, error)
- func (f *Filesystem) MkdirAll(path string, perm os.FileMode) error
- func (f *Filesystem) Open(name string) (afero.File, error)
- func (f *Filesystem) RemoveAll(path string) error
- func (f *Filesystem) Stat(path string) (os.FileInfo, error)
- func (f *Filesystem) TempDir(dir, prefix string) (string, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Filesystem ¶
type Filesystem struct {
// contains filtered or unexported fields
}
Filesystem represents the filesystem
func NewFilesystem ¶
func NewFilesystem(fs afero.Fs) *Filesystem
NewFilesystem creates a new filesystem
func (*Filesystem) Create ¶
func (f *Filesystem) Create(name string) (afero.File, error)
Create creates a file
func (*Filesystem) DirExists ¶
func (f *Filesystem) DirExists(path string) (bool, error)
DirExists checks if a directory exists
func (*Filesystem) MkdirAll ¶
func (f *Filesystem) MkdirAll(path string, perm os.FileMode) error
MkdirAll creates a directory
func (*Filesystem) Open ¶
func (f *Filesystem) Open(name string) (afero.File, error)
Open opens a file
func (*Filesystem) RemoveAll ¶
func (f *Filesystem) RemoveAll(path string) error
RemoveAll removes a directory
Click to show internal directories.
Click to hide internal directories.