luau-unzip/examples/tour.luau
Erica Marigold 681b9ce1bf
feat: implement decompression and extraction
* Implements a decompression step for extraction, currently supporting
  `DEFLATE` and `STORED`
* Moved testing file to `examples/`
* Added validation step to `ZipReader:extract` with options to
  optionally skip it (matches checksum and uncompressed size)
2024-12-30 11:09:48 +00:00

35 lines
968 B
Text

local fs = require("@lune/fs")
local zip = require("../lib")
local file = fs.readFile("test.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)", entry.size) else ""
print(prefix .. entry.name .. suffix)
end)
print("\nContents of `/`:")
local assets = reader:listDirectory("/")
for _, entry in assets do
print(entry.name, if entry.isDirectory then "DIR" else entry.size)
if not entry.isDirectory then
local extracted = reader:extract(entry, { isString = true })
print("Content:", extracted)
end
end
-- Get archive statistics
local stats = reader:getStats()
print(string.format([[
Archive stats:
Files: %d
Directories: %d
Total size: %d bytes]],
stats.fileCount,
stats.dirCount,
stats.totalSize
))