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 31
|
% $Id: filesep.Rd 25 2022-05-30 18:46:01Z proebuck $
\name{filesep}
\alias{filesep}
\title{MATLAB filesep function}
\description{
Returns the character that separates directory names in filenames.
}
\usage{
filesep
}
\details{
Variable that contains the value of \code{.Platform$file.sep}.
}
\value{
Returns character representing this platform's file 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{fileparts}},
\code{\link{fullfile}},
\code{\link{pathsep}}
}
\keyword{file}
|