
Split a full path in its components. This is specifically an issue in Windows and not really interesting for other OSs.
SplitPath(path, last.is.file = NULL)
A list, containing the following components:
the normalized path as returned by normalizePath
the drive if the OS is Windows, NA
else
the path without directory and without filename
the filename including extension
the filename without extension
the file extension
a path
logical, determining if the basename should be interpreted as filename or as last directory. If set to NULL
(default), the last entry will be interpreted if the last character is either \ or / and as filename else.
Andri Signorell <andri@signorell.net>
if (FALSE) # Windows-specific example
path <- "C:/Documents/Projects/Import/eyestudy.dta"
SplitPath(path)
path <- "C:/Documents/Projects/Import/"
SplitPath(path)
path <- "C:/Documents/Projects/Import"
SplitPath(path) # last entry will be taken as filename
SplitPath(path, last.is.file=FALSE)
Run the code above in your browser using DataLab