mirror of
https://github.com/0x5eal/luau-unzip.git
synced 2025-04-04 06:30:53 +01:00
chore(examples): add attributes to dir structure print
This commit is contained in:
parent
b1fa805363
commit
d5595135cd
1 changed files with 2 additions and 2 deletions
|
@ -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 `/`:")
|
||||
|
|
Loading…
Add table
Reference in a new issue