luau-unzip/examples/tour.luau
Erica Marigold 1078fd249c
feat: add method field to ZipEntry
Contains information about the compression method for the entry.
2025-01-06 06:05:43 +00:00

27 lines
No EOL
878 B
Text

local fs = require("@lune/fs")
local zip = require("../lib")
local file = fs.readFile("tests/data/files_and_dirs.zip")
local reader = zip.load(buffer.fromstring(file))
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)
else ""
print(prefix .. entry.name .. suffix)
end)
print("\Children of `/`:")
local assets = reader:listDirectory("/")
for _, entry in assets do
print(` {entry.name} - {if entry.isDirectory then "DIR" else "FILE"} ({entry.method})`)
end
-- Get archive statistics
local stats = reader:getStats()
print("\nArchive stats:")
print("Files:", stats.fileCount)
print("Directories:", stats.dirCount)
print("Total size:", stats.totalSize, "bytes")