Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ErrInvalidLinkTreatment = errs.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 OutDir ¶
OutDir creates the absolute path name from path and checks if the path exists and is a directory. Returns absolute path including trailing '/' or error if the path does not exist or is not a directory.
func ReadDirNoStat ¶
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 )