make.dir: Make Directory If Not Already There

Description Usage Arguments Examples

View source: R/make.dir.R

Description

Make Directory If Not Already There

Usage

1

Arguments

dir

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
##---- 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 (dir) 
{
    if (!file.exists(dir)) 
        dir.create(dir)
  }

colinsheppard/colinmisc documentation built on July 10, 2020, 5:59 p.m.