Is it possible to create a directory in lua ? If so, how ?
|
|
|
|
|
|
|
I'm pretty sure it is; look in the "os" part of the library! Failing that, there's a "system" call (or something like that, this is from memory) which you should be able to use to run an arbitrary program, which could include the mkdir command. EDIT: I found my Programming in Lua book. On page 203, it mentions how you could use an
to "fake" a directory creation command. |
||||||
|
|
|
You may find the LuaFileSystem library useful. It has a mkdir function. |
||
|
