Nothing
#' Path computations
#'
#' All functions apart from `path_real()` are purely path computations, so the
#' files in question do not need to exist on the filesystem.
#' @template fs
#' @name path_math
#' @return 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.
#' @seealso [path_expand()] for expansion of user's home directory.
#' @examples
#' \dontshow{.old_wd <- setwd(tempdir())}
#' dir_create("a")
#' file_create("a/b")
#' link_create(path_abs("a"), "c")
#'
#' # Realize the path
#' path_real("c/b")
#'
#' # Split a path
#' parts <- path_split("a/b")
#' parts
#'
#' # Join it together
#' path_join(parts)
#'
#' # Find the absolute path
#' path_abs("..")
#'
#' # Normalize a path
#' path_norm("a/../b\\c/.")
#'
#' # Compute a relative path
#' path_rel("/foo/abc", "/foo/bar/baz")
#'
#' # Find the common path between multiple paths
#' path_common(c("/foo/bar/baz", "/foo/bar/abc", "/foo/xyz/123"))
#'
#' # Cleanup
#' dir_delete("a")
#' link_delete("c")
#' \dontshow{setwd(.old_wd)}
NULL
#' Construct path to a file or directory
#'
#' `path()` constructs a relative path, `path_wd()` constructs an absolute path
#' from the current working directory.
#'
#' @param ... character vectors, if any values are NA, the result will also be
#' NA. The paths follow the recycling rules used in the tibble package,
#' namely that only length 1 arguments are recycled.
#' @param ext An optional extension to append to the generated path.
#' @export
#' @seealso [path_home()], [path_package()] for functions to construct paths
#' relative to the home and package directories respectively.
#' @examples
#' path("foo", "bar", "baz", ext = "zip")
#'
#' path("foo", letters[1:3], ext = "txt")
path <- function(..., ext = "") {
args <- list(...)
assert_recyclable(args)
path_tidy(.Call(fs_path_, lapply(args, function(x) enc2utf8(as.character(x))), ext))
}
assert_recyclable <- function(x) {
if (length(x) == 0) {
return()
}
len <- vapply(x, length, integer(1))
max_len <- max(len)
different <- which(len != 0 & len != max_len)
assert(
"Arguments must have consistent lengths, only values of length one are recycled.",
all(len[different] == 1)
)
}
#' @rdname path
#' @export
path_wd <- function(..., ext = "") {
path(getwd(), ..., ext = ext)
}
#' @describeIn path_math returns the canonical path, eliminating any symbolic
#' links and the special references `~`, `~user`, `.`, and `..`, , i.e. it
#' calls `path_expand()` (literally) and `path_norm()` (effectively).
#' @export
path_real <- function(path) {
path <- enc2utf8(as.character(path))
old <- path_expand(path)
is_missing <- is.na(path)
old[!is_missing] <- .Call(fs_realize_, old[!is_missing])
path_tidy(old)
}
#' Tidy paths
#'
#' Untidy paths are all different, tidy paths are all the same.
#' Tidy paths always use `/` to delimit directories, never have
#' multiple `/` or trailing `/` and have colourised output based on the file
#' type.
#'
#' @return An `fs_path` object, which is a character vector that also has class
#' `fs_path`
#' @template fs
#' @export
path_tidy <- function(path) {
path <- enc2utf8(as.character(path))
new_fs_path(.Call(fs_tidy_, path))
}
#' @describeIn path_math splits paths into parts.
#' @export
# TODO: examples
path_split <- function(path) {
path <- path_tidy(path)
# Split drive / UNC parts
# split keep unc paths together, but keep root paths as first part.
# //foo => '//foo' 'bar'
# /foo/bar => '/' 'foo' 'bar'
strsplit(path, "^(?=/)(?!//)|(?<!^)(?<!^/)/", perl = TRUE)
}
#' @describeIn path_math joins parts together. The inverse of [path_split()].
#' See [path()] to concatenate vectorized strings into a path.
#' @param parts A character vector or a list of character vectors, corresponding
#' to split paths.
#' @export
path_join <- function(parts) {
if (length(parts) == 0) {
return(path_tidy(""))
}
if (!is.list(parts)) {
return(path_tidy(.Call(fs_path_, as.list(enc2utf8(as.character(parts))), "")))
}
path_tidy(vapply(parts, path_join, character(1)))
}
#' @describeIn path_math returns a normalized, absolute version of a path.
#' @export
path_abs <- function(path, start = ".") {
if (!is_absolute_path(start)) {
start <- path_norm(path(getwd(), start))
}
is_abs <- is_absolute_path(path)
path[is_abs] <- path_norm(path[is_abs])
path[!is_abs] <- path_norm(path(start, path[!is_abs]))
path_tidy(path)
}
#' @describeIn path_math eliminates `.` references and rationalizes up-level
#' `..` references, so `A/./B` and `A/foo/../B` both become `A/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 using `path_real()` instead.
#' @export
path_norm <- function(path) {
non_missing <- !is.na(path)
parts <- path_split(path)
path_norm_one <- function(p) {
p <- p[p != "."]
double_dots <- p == ".."
if (any(double_dots)) {
res <- character(length(p))
size <- 0
is_abs <- is_absolute_path(p[[1]])
for (i in seq_along(p)) {
if (p[[i]] != ".." || (! is_abs && size == 0) || (size > 0 && res[[size]] == "..")) {
res[[size <- size + 1]] <- p[[i]]
} else if (size > 0) {
size <- size - 1
}
}
res <- res[seq(1, size)]
if (is_abs && res[[1]] != p[[1]]) {
res <- c(p[[1]], res)
}
p <- res
}
if (length(p) == 0) {
return(path_tidy("."))
}
path_join(p)
}
parts[non_missing] <- vapply(parts[non_missing], path_norm_one, character(1))
path_tidy(parts)
}
#' @describeIn path_math computes the path relative to the `start` path,
#' which can be either an absolute or relative path.
#' @export
#' @param start A starting directory to compute the path relative to.
# This implementation is partially derived from
# https://github.com/python/cpython/blob/9c99fd163d5ca9bcc0b7ddd0d1e3b8717a63237c/Lib/posixpath.py#L446
path_rel <- function(path, start = ".") {
if (length(start) > 1L) {
stop("`start` must be a single path to a starting directory.", call. = FALSE)
}
start <- path_abs(path_expand(start))
path <- path_abs(path_expand(path))
path_rel_one <- function(p) {
common <- path_common(c(start, p))
starts <- path_split(start)[[1]]
paths <- path_split(p)[[1]]
i <- length(path_split(common)[[1]])
double_dot_part <- rep("..", (length(starts) - i))
if (i + 1 <= length(paths)) {
path_part <- paths[seq(i + 1, length(paths))]
} else {
path_part <- character()
}
rels <- c(double_dot_part, path_part)
if (length(rels) == 0) {
return(path_tidy("."))
}
path_join(rels)
}
if (is.na(start)) {
return(path_tidy(NA_character_))
}
is_missing <- is.na(path)
path[!is_missing] <- vapply(path[!is_missing], path_rel_one, character(1))
path_tidy(path)
}
#' Finding the User Home Directory
#'
#' * `path_expand()` performs tilde expansion on a path, replacing instances of
#' `~` or `~user` with the user's home directory.
#' * `path_home()` constructs a path within the expanded users home directory,
#' calling it with _no_ arguments can be useful to verify what fs considers the
#' home directory.
#' * `path_expand_r()` and `path_home_r()` are equivalents which always use R's
#' definition of the home directory.
#' @details
#' `path_expand()` differs from [base::path.expand()] in the interpretation of
#' the home directory of Windows. In particular `path_expand()` uses the path
#' set in the `USERPROFILE` environment variable and, if unset, then uses
#' `HOMEDRIVE`/`HOMEPATH`.
#'
#' In contrast [base::path.expand()] first checks for `R_USER` then `HOME`,
#' which in the default configuration of R on Windows are both set to the user's
#' document directory, e.g. `C:\\Users\\username\\Documents`.
#' [base::path.expand()] also does not support `~otheruser` syntax on Windows,
#' whereas `path_expand()` does support this syntax on all systems.
#'
#' This definition makes fs more consistent with the definition of home
#' directory used on Windows in other languages, such as
#' [python](https://docs.python.org/3/library/os.path.html#os.path.expanduser)
#' and [rust](https://doc.rust-lang.org/std/env/fn.home_dir.html#windows). This
#' is also more compatible with external tools such as git and ssh, both of
#' which put user-level files in `USERPROFILE` by default. It also allows you to
#' write portable paths, such as `~/Desktop` that points to the Desktop location
#' on Windows, macOS and (most) Linux systems.
#'
#' Users can set the `R_FS_HOME` environment variable to override the
#' definitions on any platform.
#' @seealso [R for Windows FAQ - 2.14](https://cran.r-project.org/bin/windows/base/rw-FAQ.html#What-are-HOME-and-working-directories_003f)
#' for behavior of [base::path.expand()].
#' @param ... Additional paths appended to the home directory by [path()].
#' @inheritParams path_math
#' @export
#' @examples
#' # Expand a path
#' path_expand("~/bin")
#'
#' # You can use `path_home()` without arguments to see what is being used as
#' # the home diretory.
#' path_home()
#' path_home("R")
#'
#' # This will likely differ from the above on Windows
#' path_home_r()
path_expand <- function(path) {
path <- enc2utf8(path)
# We use the windows implementation if R_FS_HOME is set or if on windows
path_tidy(.Call(fs_expand_, path, Sys.getenv("R_FS_HOME") != "" || is_windows()))
}
#' @rdname path_expand
#' @export
path_expand_r <- function(path) {
path <- enc2utf8(path)
# Unconditionally use R_ExpandFileName
path_tidy(.Call(fs_expand_, path, FALSE))
}
#' @rdname path_expand
#' @export
path_home <- function(...) {
path(path_expand("~/"), ...)
}
#' @rdname path_expand
#' @export
path_home_r <- function(...) {
path(path_expand_r("~/"), ...)
}
#' Manipulate file paths
#'
#' `path_file()` returns the filename portion of the path, `path_dir()` returns
#' the directory portion. `path_ext()` returns the last extension (if any) for a
#' path. `path_ext_remove()` removes the last extension and returns the rest of
#' the path. `path_ext_set()` replaces the extension with a new extension. If
#' there is no existing extension the new extension is appended.
#'
#' Note because these are not full file paths they return regular character
#' vectors, not `fs_path()` objects.
#' @template fs
#' @param ext,value The new file extension.
#' @seealso [base::basename()], [base::dirname()]
#' @export
#' @examples
#' path_file("dir/file.zip")
#'
#' path_dir("dir/file.zip")
#'
#' path_ext("dir/file.zip")
#'
#' path_ext("file.tar.gz")
#'
#' path_ext_remove("file.tar.gz")
#'
#' # Only one level of extension is removed
#' path_ext_set(path_ext_remove("file.tar.gz"), "zip")
#' @export
path_file <- function(path) {
is_missing <- is.na(path)
path[!is_missing] <- basename(path[!is_missing])
as.character(path)
}
#' @rdname path_file
#' @export
path_dir <- function(path) {
is_missing <- is.na(path)
path[!is_missing] <- dirname(path[!is_missing])
as.character(path_tidy(path))
}
#' @rdname path_file
#' @export
path_ext <- function(path) {
if (length(path) == 0) {
return(character())
}
res <- captures(path_file(path), regexpr("(?<!^|[.]|/)[.]+([^.]+)$", path_file(path), perl = TRUE))[[1]]
res[!is.na(path) & is.na(res)] <- ""
res
}
#' @rdname path_file
#' @export
path_ext_remove <- function(path) {
dir <- path_dir(path)
file <- sub("(?<!^|[.])\\.+([^.]+)$", "", path_file(path), perl = TRUE)
na <- is.na(path)
no_dir <- dir == "." | dir == ""
path[!na & no_dir] <- path_tidy(file[!na & no_dir])
path[!na & !no_dir] <- path(dir[!na & !no_dir], file[!na & !no_dir])
path
}
#' @rdname path_file
#' @export
path_ext_set <- function(path, ext) {
if (!(length(ext) == length(path) || length(ext) == 1)) {
assert_recyclable(list(path, ext))
}
# Remove a leading . if present
ext <- sub("^[.]", "", ext)
has_ext <- nzchar(ext)
to_set <- !is.na(path) & has_ext
if (length(ext) == 1) {
ext <- rep(ext, sum(to_set))
}
path[to_set] <- paste0(
path_ext_remove(path[to_set]), ".", ext
)
path_tidy(path)
}
#' @rdname path_file
#' @export
`path_ext<-` <- function(path, value) {
path_ext_set(path, value)
}
#' @describeIn path_math finds the common parts of two (or more) paths.
#' @export
path_common <- function(path) {
is_missing <- is.na(path)
if (any(is_missing)) {
return(path_tidy(NA))
}
is_abs <- is_absolute_path(path)
# We must either have all absolute paths, or all relative paths.
if (!(all(is_abs) || all(!is_abs))) {
stop(fs_error("Can't mix absolute and relative paths"))
}
path <- path_norm(path)
path <- sort(path)
# remove . entries from the split paths
parts <- lapply(path_split(path), function(x) x[x != "."])
s1 <- parts[[1]]
s2 <- parts[[length(parts)]]
common <- s1
for (i in seq_along(s1)) {
if (s1[[i]] != s2[[i]]) {
if (i == 1) {
common <- ""
} else {
common <- s1[seq(1, i - 1)]
}
break;
}
}
path_join(common)
}
#' Filter paths
#'
#' @template fs
#' @param glob A wildcard aka globbing pattern (e.g. `*.csv`) passed on to [grep()] to filter paths.
#' @param regexp A regular expression (e.g. `[.]csv$`) passed on to [grep()] to filter paths.
#' @param invert If `TRUE` return files which do _not_ match
#' @param ... Additional arguments passed to [grep].
#' @export
#' @examples
#' path_filter(c("foo", "boo", "bar"), glob = "*oo")
#' path_filter(c("foo", "boo", "bar"), glob = "*oo", invert = TRUE)
#'
#' path_filter(c("foo", "boo", "bar"), regexp = "b.r")
path_filter <- function(path, glob = NULL, regexp = NULL, invert = FALSE, ...) {
if (!is.null(glob)) {
if (!is.null(regexp)) {
stop(fs_error("`glob` and `regexp` cannot both be set."))
}
regexp <- utils::glob2rx(glob)
}
if (!is.null(regexp)) {
path <- grep(x = path, pattern = regexp, value = TRUE, invert = isTRUE(invert), ...)
}
setNames(path_tidy(path), path)
}
#' @describeIn path_math determine if a path has a given parent.
#' @param parent The parent path.
#' @export
path_has_parent <- function(path, parent) {
path <- path_abs(path)
parent <- path_abs(parent)
res <- logical(length(path))
assert_recyclable(list(path, parent))
if (length(path) == 1) {
path <- rep(path, length(parent))
}
if (length(parent) == 1) {
parent <- rep(parent, length(path))
}
for (i in seq_along(path)) {
res[[i]] <- identical(as.character(path_common(c(path[[i]], parent[[i]]))), as.character(parent[[i]]))
}
res
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.