当前位置 : 主页 > 网络编程 > lua >

lua 根据路径获取文件名

来源:互联网 收集:自由互联 发布时间:2021-06-23
require " lfs " function dirpath(path) for file in lfs.dir(path) do -- lfs.dir 根据路径获取该路径下的文件名 if file ~= ‘ . ‘ and file ~= ‘ .. ‘ then local f = (path .. ‘ / ‘ ..file) local attr = lfs.attributes(f) -
require "lfs"

function dirpath(path)
    for file in lfs.dir(path) do   --  lfs.dir  根据路径获取该路径下的文件名
        if file ~= . and file ~= .. then
            local f = (path .. /..file)
            local attr = lfs.attributes(f) -- 该文件的各种属性
            if attr.mode == "directory" then
                print(f .. "  -->  " .. attr.mode)
                dirpath(f)
            else
                print(f .. "  -->  " .. attr.mode)
            end

        end
    end
end
dirpath("/usr")

删除文件: os.remove(filepath)

网友评论