18 lines
313 B
Plaintext
18 lines
313 B
Plaintext
:sig
|
|
bool mkdir(String path)
|
|
|
|
:params
|
|
path : the path name to be created
|
|
return value : returns true if the directory was successfully created
|
|
|
|
:see
|
|
>sys
|
|
|
|
:content
|
|
Creates the directory named by `path`.
|
|
|
|
The function returns `true` when the directory was created successfully.
|
|
|
|
:example
|
|
print("mkdir example\n");
|