mirror of
https://github.com/0x5eal/luau-unzip.git
synced 2025-04-02 22:00:53 +01:00
Implement core `ZipReader`, `ZipEntry` and basic API. Supports simple zip format deserialization, without advanced features, or decompression.
37 lines
1,008 B
Text
37 lines
1,008 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 /lib/:")
|
|
local assets = reader:listDirectory("/lib/")
|
|
for _, entry in ipairs(assets) do
|
|
print(entry.name, entry.isDirectory and "DIR" or entry.size)
|
|
end
|
|
|
|
local configEntry = reader:findEntry("config.json")
|
|
if configEntry then
|
|
local content = reader:extract(configEntry)
|
|
print("\nConfig file size:", buffer.len(content))
|
|
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
|
|
))
|