package
0.0.0-20130121074735-1d03baafba06
Repository: https://github.com/icattlecoder/go.git
Documentation: pkg.go.dev

# Functions

Abs returns an absolute representation of path.
Base returns the last element of path.
Clean returns the shortest path name equivalent to path by purely lexical processing.
Dir returns all but the last element of path, typically the path's directory.
EvalSymlinks returns the path name after the evaluation of any symbolic links.
Ext returns the file name extension used by path.
FromSlash returns the result of replacing each slash ('/') character in path with a separator character.
Glob returns the names of all files matching pattern or nil if there is no matching file.
HasPrefix exists for historical compatibility and should not be used.
IsAbs returns true if the path is absolute.
Join joins any number of path elements into a single path, adding a Separator if necessary.
Match returns true if name matches the shell file name pattern.
Rel returns a relative path that is lexically equivalent to targpath when joined to basepath with an intervening separator.
Split splits path immediately following the final Separator, separating it into a directory and file name component.
SplitList splits a list of paths joined by the OS-specific ListSeparator, usually found in PATH or GOPATH environment variables.
ToSlash returns the result of replacing each separator character in path with a slash ('/') character.
VolumeName returns leading volume name.
Walk walks the file tree rooted at root, calling walkFn for each file or directory in the tree, including root.

# Constants

No description provided by the author
No description provided by the author

# Variables

ErrBadPattern indicates a globbing pattern was malformed.
SkipDir is used as a return value from WalkFuncs to indicate that the directory named in the call is to be skipped.

# Type aliases

WalkFunc is the type of the function called for each file or directory visited by Walk.