if file ~="." and file ~=".." then
--print(file)
local path1 = path .."/"..file
for file1 in lfs.dir(path1) do
if file1 ~="." and file1 ~=".." then
--print(file1)
local path2 = path .."/"..file.."/"..file1
for file2 in lfs.dir(path2) do
if file2 ~="." and file2 ~=".." then
print(path .."/"..file.."/"..file1.."/"..file2)
end
end