1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/paths.R
\name{normalize_path}
\alias{normalize_path}
\title{Normalize paths}
\usage{
normalize_path(x, winslash = "/", must_work = FALSE, resolve_symlink = TRUE)
}
\arguments{
\item{x, winslash, must_work}{Arguments passed to
\code{\link{normalizePath}()}.}
\item{resolve_symlink}{Whether to resolve symbolic links.}
}
\description{
A wrapper function of \code{normalizePath()} with different defaults.
}
\examples{
library(xfun)
normalize_path("~")
}
|