archive

libarchive bindings for Crystal libarchive zip rar
0.2.0 released

archive.cr

CI

archive.cr provides libarchive bindings for Crystal. Only a small subset of the libarchive functions are implemented, and currently only extraction is supported.

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      archive:
        github: hkalexling/archive.cr
    
  2. Run shards install

Usage

require "archive"

# Extract all entries
Archive::File.open "file.zip" do |f|
  f.entries.map do |e|
    # Skip non-file entries
  	next unless e.info.file?

    filename = e.filename
    size = e.size
    file = File.new filename, "wb"
    file.write e.read
  end
end

# Extract a specific entry
Archive::File.open "file.zip" do |f|
    file = File.new "img.jpg", "wb"
    file.write f.read_entry "img.jpg"
end
archive:
  github: hkalexling/archive.cr
  version: ~> 0.2.0
License MIT
Crystal 0.34.0

Authors

Dependencies 0

Development Dependencies 0

Dependents 1

Last synced .
search fire star recently