Arbortext Command Language > Commands > mkdir
  
mkdir
mkdir [ -p] pathname
This command creates a new directory specified by pathname. If -p is not included, all leading components in pathname must be existing directories, and only the lowest level directory will be created. When the -p option is given, mkdir will create a multiple-level directory structure.
Examples
mkdir techman
mkdir ../src
# The following command creates the entire directory structure.
mkdir -p 'c:\newdir\tests\monday'