1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
% $Id: pathsep.Rd 25 2022-05-30 18:46:01Z proebuck $
\name{pathsep}
\alias{pathsep}
\title{MATLAB pathsep function}
\description{
Returns the character that separates directory names in a list such
as the \env{PATH} environment variable.
}
\usage{
pathsep
}
\details{
Variable that contains the value of \code{.Platform$path.sep}.
}
\value{
Returns character representing this platform's path separator.
}
\note{
Implemented as an R variable rather than a function such that it more
closely resembles normal MATLAB usage.
}
\author{
P. Roebuck \email{proebuck1701@gmail.com}
}
\seealso{
\code{\link{filesep}}
}
\keyword{file}
|