make_dir.Rd
make_dir(x)
##---- Should be DIRECTLY executable !! ----
##-- ==> Define data, use random,
##-- or do help(data=index) for the standard data sets.
## The function is currently defined as
function (x)
{
if (!dir.exists(x)) {
dir.create(x)
}
}
#> function (x)
#> {
#> if (!dir.exists(x)) {
#> dir.create(x)
#> }
#> }
#> <environment: 0x13927fa50>