kubernetes/vendor/sigs.k8s.io/kustomize/kyaml/filesys/fsondisk.go

var _

type fsOnDisk

// MakeFsOnDisk makes an instance of fsOnDisk.
func MakeFsOnDisk() FileSystem {}

// Create delegates to os.Create.
func (fsOnDisk) Create(name string) (File, error) {}

// Mkdir delegates to os.Mkdir.
func (fsOnDisk) Mkdir(name string) error {}

// MkdirAll delegates to os.MkdirAll.
func (fsOnDisk) MkdirAll(name string) error {}

// RemoveAll delegates to os.RemoveAll.
func (fsOnDisk) RemoveAll(name string) error {}

// Open delegates to os.Open.
func (fsOnDisk) Open(name string) (File, error) {}

// CleanedAbs converts the given path into a
// directory and a file name, where the directory
// is represented as a ConfirmedDir and all that implies.
// If the entire path is a directory, the file component
// is an empty string.
func (x fsOnDisk) CleanedAbs(
	path string) (ConfirmedDir, string, error) {}

// Exists returns true if os.Stat succeeds.
func (fsOnDisk) Exists(name string) bool {}

// Glob returns the list of matching files
func (fsOnDisk) Glob(pattern string) ([]string, error) {}

// IsDir delegates to os.Stat and FileInfo.IsDir
func (fsOnDisk) IsDir(name string) bool {}

// ReadDir delegates to os.ReadDir
func (fsOnDisk) ReadDir(name string) ([]string, error) {}

// ReadFile delegates to os.ReadFile.
func (fsOnDisk) ReadFile(name string) ([]byte, error) {}

// WriteFile delegates to os.WriteFile with read/write permissions.
func (fsOnDisk) WriteFile(name string, c []byte) error {}

// Walk delegates to filepath.Walk.
func (fsOnDisk) Walk(path string, walkFn filepath.WalkFunc) error {}