std/os/filepath
Index
fn Clean(mut path: str): str
fn ToSlash(path: str): str
fn FromSlash(path: str): str
fn Join(elem: ...str): str
fn Ext(path: str): str
fn Abs(path: str): (str, bool)
fn Base(mut path: str): str
fn Dir(path: str): str
fn VolumeName(path: str): str
Clean
fn Clean(mut path: str): str
Returns the shortest path name equivalent to path by purely lexical processing. It applies the following rules iteratively until no further processing can be done:
1. Replace multiple SEPARATOR elements with a single one.
2. Eliminate each . path name element (the current directory).
3. Eliminate each inner .. path name element (the parent directory)
along with the non-.. element that precedes it.
4. Eliminate .. elements that begin a rooted path:
that is, replace "/.." by "/" at the beginning of a path,
assuming SEPARATOR is '/'.
The returned path ends in a slash only if it represents a root directory, such as "/" on Unix or `C:\` on Windows.
Finally, any occurrences of slash are replaced by SEPARATOR.
If the result of this process is an empty string, clean returns the string ".".
On Windows, clean does not modify the volume name other than to replace occurrences of "/" with `\`. For example, clean("//host/share/../x") returns `\\host\share\x`.
See also Rob Pike, “Lexical File Names in Plan 9 or Getting Dot-Dot Right” https://9p.io/sys/doc/lexnames.html
ToSlash
fn ToSlash(path: str): str
Returns the result of replacing each separator character in path with a slash ('/') character. Multiple separators are replaced by multiple slashes.
FromSlash
fn FromSlash(path: str): str
Returns the result of replacing each slash ('/') character in path with a separator character. Multiple slashes are replaced by multiple separators.
Join
fn Join(elem: ...str): str
Joins any number of path elements into a single path, separating them with an OS specific SEPARATOR. Empty elements are ignored. The result is cleaned. However, if the argument list is empty or all its elements are empty, join returns an empty string. On Windows, the result will only be a UNC path if the first non-empty element is a UNC path.
Ext
fn Ext(path: str): str
Returns the file name extension used by path. The extension is the suffix beginning at the final dot in the final element of path; it is empty if there is no dot.
Abs
fn Abs(path: str): (str, bool)
Returns an absolute representation of path. If the path is not absolute it will be joined with the current working directory to turn it into an absolute path. The absolute path name for a given file is not guaranteed to be unique. abs calls clean on the result.
Base
fn Base(mut path: str): str
Returns the last element of path. Trailing path separators are removed before extracting the last element. If the path is empty, base returns ".". If the path consists entirely of separators, base returns a single separator.
Dir
fn Dir(path: str): str
Returns all but the last element of path, typically the path's directory. After dropping the final element, dir calls clean on the path and trailing slashes are removed. If the path is empty, dir returns ".". If the path consists entirely of separators, dir returns a single separator. The returned path does not end in a separator unless it is the root directory.
VolumeName
fn VolumeName(path: str): str
Returns leading volume name. Given "C:\foo\bar" it returns "C:" on Windows. Given "\\host\share\foo" it returns "\\host\share". On other platforms it returns empty string.