| mkdirs {R.utils} | R Documentation |
Creates a directory including any necessary but nonexistent parent directories.
## Default S3 method: mkdirs(pathname, ...)
pathname |
A character string of the pathname to be checked. |
... |
Not used. |
Returns TRUE if the directory was succesfully created,
otherwise FALSE.
Note that if the directory already exists, FALSE is returned.
Henrik Bengtsson (http://www.braju.com/R/)
Internally dir.create() is used.