Welcome to ClientVPS Mirrors

LuaFileSystem
LuaFileSystem
File System Library for the Lua Programming Language

Examples

Directory iterator

The following example iterates over a directory and recursively lists the attributes for each file inside it.

require"lfs"

function attrdir (path)
    for file in lfs.dir(path) do
        if file ~= "." and file ~= ".." then
            local f = path..'/'..file
            print ("\t "..f)
            local attr = lfs.attributes (f)
            assert (type(attr) == "table")
            if attr.mode == "directory" then
                attrdir (f)
            else
                for name, value in pairs(attr) do
                    print (name, value)
                end
            end
        end
    end
end

attrdir (".")

Valid XHTML 1.0!

$Id: examples.html,v 1.8 2007/12/14 15:28:04 carregal Exp $

Need a high-speed mirror for your open-source project?
Contact our mirror admin team at info@clientvps.com.

This archive is provided as a free public service to the community.
Proudly supported by infrastructure from VPSPulse , RxServers , BuyNumber , UnitVPS , OffshoreName and secure payment technology by ArionPay.