lua-users home
lua-l archive

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


On 12/18/06, Mark Edgar
lposix:

   -- http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/#lposix
   require "lposix"
   for name in posix.files"/foo" do
     print(name)
   end


And there is also the "ex" API:

   -- http://lua-users.org/wiki/ExtensionProposal
   require "ex"
   for entry in os.dir"/foo" do
     print(entry.name)
   end

Thanks Mark. These two libs also look great. At first blush both will be good additions to my toolbox in addition to their ability to help me in this case.

 Ken Smith