# Functions
Abs returns the absolute path.
Clean returns the cleaned path.
CurrentDir returns the current directory path.
CurrentFile returns the current file path.
Directory returns a new directory element from a directory path.
DirPath returns the path of a directory at the given offset in stacktrace.
Exists returns true if the path exists.
File returns a new file element from a file path.
FilePath returns the path of a file at the given offset in stacktrace.
Files returns the files in the path.
Function returns a new function element from a function path.
GetAbsDir returns the absolute path of the given path and returns an empty string if the path does not exist.
GetFilePath searches for the given file in the current and each child directory in the provided path and returns the directory and full path of the first file found.
GetFilePath searches for the given file in the current and each parent directory in the provided path and returns the directory and full path of the first file found.
GetModule searches for the go.mod file in the current and each parent in the provided path and returns the module name, version, directory, and full path of the go.mod file.
IsAbs returns true if the path is absolute.
IsDir returns true if the path is a directory.
IsFile returns true if the path is a file.
Join joins the given paths.
Module returns a new module element frm a file or directory path.
MustExist panics if the path does not exist.
New returns a new Path.
Package returns a new package element from a funcation path.
Set creates a path from the given 3 elements of dir, file, extension.