require "ui/dialog" -- for Menu FileChooser = Menu:new{ path = ".", parent = nil, show_hidden = false, filter = function(filename) return true end, } function FileChooser:init() self:changeToPath(self.path) end function FileChooser:changeToPath(path) local dirs = {} local files = {} self.path = path for f in lfs.dir(self.path) do if self.show_hidden or not string.match(f, "^%.[^.]") then local filename = self.path.."/"..f local filemode = lfs.attributes(filename, "mode") if filemode == "directory" and f ~= "." and f~=".." then table.insert(dirs, f) elseif filemode == "file" then if self.filter(filename) then table.insert(files, f) end end end end table.sort(dirs) if self.path ~= "/" then table.insert(dirs, 1, "..") end table.sort(files) self.item_table = {} for _, dir in ipairs(dirs) do table.insert(self.item_table, { text = dir.."/", path = self.path.."/"..dir }) end for _, file in ipairs(files) do table.insert(self.item_table, { text = file, path = self.path.."/"..file }) end Menu.init(self) -- call parent's init() end function FileChooser:onSelect() local selected = self.item_table[(self.page-1)*self.perpage+self.selected.y] if lfs.attributes(selected.path, "mode") == "directory" then UIManager:close(self) self:changeToPath(selected.path) UIManager:show(self) else UIManager:close(self) self.on_select_callback(self.item_table[self.selected.y]) end return true end