# Packages
Package filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths.
# Functions
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.
Ext returns the file name extension used by path.
IsAbs reports whether the path is absolute.
Join joins any number of path elements into a single path, adding a separating slash if necessary.
Match reports whether name matches the shell pattern.
Split splits path immediately following the final slash, separating it into a directory and file name component.
# Variables
ErrBadPattern indicates a pattern was malformed.