mirror of
https://github.com/0x5eal/luau-unzip.git
synced 2025-04-04 06:30:53 +01:00
27 lines
No EOL
878 B
Text
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") |