函数:getList 遍历文件
--遍历文件
function getList(path)
local a = io.popen("ls "..path);
local f = {};
for l in a:lines() do
table.insert(f,l)
end
a:close()
return f
end
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
path | string | 是 | 要遍历文件的文件夹的路径 |
返回值 | 类型 | 说明 |
---|---|---|
list | table/nil | 文件路径的集合 |
函数用例
如要列举流程文件夹下所有的文件,则输入:
--遍历文件
function getList(path)
local a = io.popen("ls "..path);
local f = {};
for l in a:lines() do
table.insert(f,l)
end
a:close()
return f
end
--相对路径为当前流程文件夹:/sdcard/LuaBox/Projects/流程名称/
path="/sdcard/LuaBox/Projects/123/"
list = getList(path);
if #list > 0 then
for i=1, #list,1 do
dialog(list[i])
end
else
dialog("文件夹路径不存在")
end