20 lines
376 B
Plaintext
20 lines
376 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.
|
|
|
|
Related:
|
|
|
|
- PHP: `mkdir()`
|
|
- JavaScript / Node.js: Node `fs.mkdirSync()` or `fs.promises.mkdir()`
|