lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Fri, 24 Apr 2009 13:46:40 -0400
kenk@heroesent.com wrote:

>    I've found a number of examples that use os.mkdir (among other  
> methods), but when I go to use that method it fails saying that the  
> method is not available. Is there an extended OS module I'm suppose
> to include?

Lua is written in ANSI C, and ANSI C has no concept of directories, so
neither does stock Lua.  Look for lposix or LuaFileSystem.

B.