removeDirectory {R.utils} | R Documentation |
Removes a directory, and if requested, also its contents.
## Default S3 method: removeDirectory(path, recursive=FALSE, mustExist=TRUE, ...)
path |
A character string specifying the directory to be removed. |
recursive |
If TRUE , subdirectories and files are also removed.
If FALSE , and directory is non-empty, an exception is thrown. |
mustExist |
If TRUE , a the directory does not exist, an exception
is thrown. |
... |
Not used. |
Returns (invisibly) TRUE
, the directory was successfully removed,
otherwise FALSE
, unless an exception is thrown.
Henrik Bengtsson (http://www.braju.com/R/)
Internally unlink
() is used.