utilsk8s.io/utils/path Index | Files

package path

import "k8s.io/utils/path"

Index

Variables

var ErrInvalidLinkTreatment = errors.New("unknown link behavior")

ErrInvalidLinkTreatment indicates that the link treatment behavior requested is not a valid behavior.

Functions

func Exists

func Exists(linkBehavior LinkTreatment, filename string) (bool, error)

Exists checks if specified file, directory, or symlink exists. The behavior of the test depends on the linkBehaviour argument. See LinkTreatment for more details.

func ReadDirNoStat

func ReadDirNoStat(dirname string) ([]string, error)

ReadDirNoStat returns a string of files/directories contained in dirname without calling lstat on them.

Types

type LinkTreatment

type LinkTreatment int

LinkTreatment is the base type for constants used by Exists that indicate how symlinks are treated for existence checks.

const (
	// CheckFollowSymlink follows the symlink and verifies that the target of
	// the symlink exists.
	CheckFollowSymlink LinkTreatment = iota

	// CheckSymlinkOnly does not follow the symlink and verifies only that they
	// symlink itself exists.
	CheckSymlinkOnly
)

Source Files

file.go

Version
v0.0.0-20250321185631-1f6e0b77f77e (latest)
Published
Mar 21, 2025
Platform
linux/amd64
Imports
2 packages
Last checked
1 month ago

Tools for package owners.