- This wiki is out of date, use the continuation of this wiki instead
Mkdir
From FenixWiki
(Difference between revisions)
| Revision as of 19:19, 26 June 2007 (edit) Sandman (Talk | contribs) ← Previous diff |
Current revision (19:23, 26 June 2007) (edit) (undo) Sandman (Talk | contribs) m |
||
| (One intermediate revision not shown.) | |||
| Line 3: | Line 3: | ||
| ==Definition== | ==Definition== | ||
| - | '''INT''' | + | '''INT''' mkdir ( <'''STRING''' directoryname> ) |
| Creates a new directory in the current path of execution with a certain name. | Creates a new directory in the current path of execution with a certain name. | ||
| Line 9: | Line 9: | ||
| == Parameters == | == Parameters == | ||
| {| | {| | ||
| - | | '''STRING''' directoryname || - The | + | | '''STRING''' directoryname || - The name of the directory to be created. |
| |} | |} | ||
| Line 15: | Line 15: | ||
| '''INT''' : Success | '''INT''' : Success | ||
| {| | {| | ||
| - | | 0 ([[false]]) || - Creating | + | | 0 ([[false]]) || - Creating a new directory with the specified name failed. |
| |- | |- | ||
| - | | !0 ([[true]]) || - Creating | + | | !0 ([[true]]) || - Creating a new directory with the specified name succeeded. |
| |} | |} | ||
Current revision
[edit] Definition
INT mkdir ( <STRING directoryname> )
Creates a new directory in the current path of execution with a certain name.
[edit] Parameters
| STRING directoryname | - The name of the directory to be created. |
[edit] Returns
INT : Success
| 0 (false) | - Creating a new directory with the specified name failed. |
| !0 (true) | - Creating a new directory with the specified name succeeded. |
