chore(examples): add attributes to dir structure print

This commit is contained in:
Erica Marigold 2025-01-07 18:48:23 +00:00
parent b1fa805363
commit d5595135cd
Signed by: DevComp
GPG key ID: 429EF1C337871656

View file

@ -8,9 +8,9 @@ print("Directory structure:")
reader:walk(function(entry, depth)
local prefix = string.rep(" ", depth)
local suffix = if not entry.isDirectory
then string.format(" (%d bytes), content: %s", entry.size, reader:extract(entry, { isString = true }) :: string)
then string.format(" (%d bytes), attrs: 0x%x, content: %s", entry.size, entry.attributes, reader:extract(entry, { isString = true }) :: string)
else ""
print(prefix .. entry.name .. suffix)
print(prefix .. entry:getPath() .. suffix)
end)
print("\Children of `/`:")