Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type FS ¶
type FS interface {
Open(name string) (File, error)
RemoveDir(name string) error
RemoveFile(name string) error
ReadFile(name string) ([]byte, error)
ReadDir(dirname string) ([]os.FileInfo, error)
MakeDirs(name string)
ListDirs(string) ([]string, error)
Exists(name string) (bool, error)
}
FS represents a minimal filesystem implementation See io/fs.FS in http://golang.org/s/draft-iofs-design
type File ¶
File represents an open file in FS See io/fs.File in http://golang.org/s/draft-iofs-design
Click to show internal directories.
Click to hide internal directories.