Skip to content

unzipArchive

unzipArchive(zip, options?) → object · Binary

Extract all files from a zip archive into an object keyed by entry name.

  • zip (required): zip binary data

  • options (optional): extraction options

utlx
let files = unzipArchive($input.archive)
{
  readme: binaryToString(files."README.md", "UTF-8")
}

Released under AGPL-3.0.