Difference between revisions of "Fs.makeDir"
From ComputerCraft Wiki
(Create page) |
(Copy description from API page and use type template) |
||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 2: | Line 2: | ||
{{Function | {{Function | ||
|name=fs.makeDir | |name=fs.makeDir | ||
| − | |args= | + | |args={{Type|string}} path |
|api=fs | |api=fs | ||
| − | |desc= | + | |desc=Makes a directory. If the location is already a directory, this function silently does nothing. If any parent path components are missing, they are also created. If the target location or any parent exists and is a file (instead of a directory), the operation fails. |
|examples= | |examples= | ||
{{Example | {{Example | ||
| Line 11: | Line 11: | ||
}} | }} | ||
}} | }} | ||
| + | |||
| + | [[Category:Lua_Core_Functions]] | ||
Latest revision as of 19:43, 22 April 2013
| Makes a directory. If the location is already a directory, this function silently does nothing. If any parent path components are missing, they are also created. If the target location or any parent exists and is a file (instead of a directory), the operation fails. | |
| Syntax | fs.makeDir(string path) |
| Returns | nil |
| Part of | ComputerCraft |
| API | fs |
Examples
| Create a directory called "efgh" inside a directory called "abcd" ("abcd" need not exist; it will be created) | |
| Code |
fs.makeDir("abcd/efgh")
|