mirror of
https://github.com/CCLeonOS/LeonOS.git
synced 2026-03-03 15:17:01 +00:00
- 移除不必要的启动检查和别名设置代码 - 实现新的目录列表功能,支持隐藏文件显示设置 - 使用分页表格显示目录内容,区分文件和目录 - 添加参数处理,支持多目录列表显示
46 lines
1.0 KiB
Lua
46 lines
1.0 KiB
Lua
-- list
|
|
|
|
local args = {...}
|
|
|
|
local fs = require("fs")
|
|
local shell = require("shell")
|
|
local colors = require("colors")
|
|
local settings = require("settings")
|
|
local textutils = require("textutils")
|
|
|
|
if #args == 0 then args[1] = shell.dir() end
|
|
|
|
local show_hidden = settings.get("list.show_hidden")
|
|
|
|
local function list_dir(dir)
|
|
if not fs.exists(dir) then
|
|
error(dir .. ": that directory does not exist", 0)
|
|
elseif not fs.isDir(dir) then
|
|
error(dir .. ": not a directory", 0)
|
|
end
|
|
|
|
local raw_files = fs.list(dir)
|
|
local files, dirs = {}, {}
|
|
|
|
for i=1, #raw_files, 1 do
|
|
local full = fs.combine(dir, raw_files[i])
|
|
|
|
if raw_files[i]:sub(1,1) ~= "." or show_hidden then
|
|
if fs.isDir(full) then
|
|
dirs[#dirs+1] = raw_files[i]
|
|
|
|
else
|
|
files[#files+1] = raw_files[i]
|
|
end
|
|
end
|
|
end
|
|
|
|
textutils.pagedTabulate(colors.green, dirs, colors.white, files)
|
|
end
|
|
|
|
for i=1, #args, 1 do
|
|
if #args > 1 then
|
|
textutils.coloredPrint(colors.yellow, args[i]..":\n", colors.white)
|
|
end
|
|
list_dir(args[i])
|
|
end |