vote up 1 vote down star

Is it possible to create a directory in lua ? If so, how ?

flag

2 Answers

vote up 3 vote down check

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

os.execute("mkdir " .. dirname)

to "fake" a directory creation command.

link|flag
5  
The Lua design philosophy is to be pure ISO C, so as to be portable to anything with a C compiler. There is no directory creation function in the C standard library. This is left up to platform-specific extensions, like mkdir(2) on POSIX systems and CreateDirectory*() on Windows. – Warren Young Nov 6 at 22:42
Thanks ;) ! I knew I could do that kind of execute(), but I was wondering if there was a Lua alternative... I guess there isn't ;) ! – Wookai Nov 6 at 22:43
vote up 6 vote down

You may find the LuaFileSystem library useful. It has a mkdir function.

link|flag
Thanks for the link ! I can't user other libraires for the moment, so I'll stick with the os.execute() version, but I'll keep LuaFileSystem in mind for next time ! – Wookai Nov 9 at 20:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.