mkdir | R Documentation |
Create directory, including parent directories if necessary, without generating a warning if the directory already exists.
mkdir(path)
path |
a directory name. |
TRUE
for success, FALSE
for failure, invisibly.
dir.create
is the base function to create a new directory.
rmdir
removes an empty directory.
clean
can be used to remove non-empty directories.
TAF-package
gives an overview of the package.
## Not run:
mkdir("emptydir")
rmdir("emptydir")
mkdir("outer/inner")
rmdir("outer", recursive=TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.