os.Path.mkDir
Creates a new directory.
Syntax
os.Path.mkDir(
path STRING)
RETURNS INTEGER
- path is the path of the directory to create.
Usage
The specified path must be an absolute or relative path with the new directory to be created, and the parent directories must already exist.
The function returns TRUE
if the directory has been successfully created,
FALSE
otherwise.