All functions apart from path_real()
are purely path computations, so the
files in question do not need to exist on the filesystem.
Usage
path_real(path)
path_split(path)
path_join(parts)
path_abs(path, start = ".")
path_norm(path)
path_rel(path, start = ".")
path_common(path)
path_has_parent(path, parent)
Value
The new path(s) in an fs_path
object, which is a character vector
that also has class fs_path
. Except path_split()
, which returns a list
of character vectors of path components.
Functions
path_real()
: returns the canonical path, eliminating any symbolic links and the special references~
,~user
,.
, and..
, , i.e. it callspath_expand()
(literally) andpath_norm()
(effectively).path_split()
: splits paths into parts.path_join()
: joins parts together. The inverse ofpath_split()
. Seepath()
to concatenate vectorized strings into a path.path_abs()
: returns a normalized, absolute version of a path.path_norm()
: eliminates.
references and rationalizes up-level..
references, soA/./B
andA/foo/../B
both becomeA/B
, but../B
is not changed. If one of the paths is a symbolic link, this may change the meaning of the path, so consider usingpath_real()
instead.path_rel()
: computes the path relative to thestart
path, which can be either an absolute or relative path.path_common()
: finds the common parts of two (or more) paths.path_has_parent()
: determine if a path has a given parent.
See also
path_expand()
for expansion of user's home directory.
Examples
dir_create("a")
file_create("a/b")
link_create(path_abs("a"), "c")
# Realize the path
path_real("c/b")
#> /tmp/RtmphNeatp/a/b
# Split a path
parts <- path_split("a/b")
parts
#> [[1]]
#> [1] "a" "b"
#>
# Join it together
path_join(parts)
#> a/b
# Find the absolute path
path_abs("..")
#> /tmp
# Normalize a path
path_norm("a/../b\\c/.")
#> b/c
# Compute a relative path
path_rel("/foo/abc", "/foo/bar/baz")
#> ../../abc
# Find the common path between multiple paths
path_common(c("/foo/bar/baz", "/foo/bar/abc", "/foo/xyz/123"))
#> /foo
# Cleanup
dir_delete("a")
link_delete("c")