R/abs_path.R

#' Absolute (normalized) path
#'
#' @param \dots character, as in \link{file.path}
#' @param mustWork as in \link{normalizePath}
#'
#' @return character
abs_path <- function (..., mustWork = FALSE) {
  normalizePath(file.path(...), mustWork = mustWork)
}
BAAQMD/cacher documentation built on May 20, 2020, 12:44 a.m.