contents   index   previous   next



Clib.mkdir()

syntax:

Clib.mkdir(dirpath)

where:

dirpath - directory specification to make.

 

return:

number - 0 on success, else -1.

 

description:

This method creates the directory specified in the parameter dirpath. The specified directory may be an absolute or relative path specification.

 

see:

Clib.rmdir(), Clib.chdir()

 

 


Clib.rmdir()