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), attrs: 0x%x, content: %s", entry.size, entry.attributes, reader:extract(entry, { isString = true }) :: string) else "" print(prefix .. entry:getPath() .. 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")