• Stars
    star
    6
  • Rank 2,460,870 (Top 50 %)
  • Language
    Julia
  • License
    Other
  • Created over 8 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Wrapper for libarchive (Multi-format archive and compression library. Supports gz, gzip, tar, pax, cpio, zip, xar, zstd, lz4, lha, ar, cab, mtree, rar, ISO)

LibArchive.jl: A Julia interface for libarchive

Build status codecov.io

Usage

read a binary file with lzma compression

reader = LibArchive.Reader(filename)
LibArchive.support_format_raw(reader)
LibArchive.support_filter_all(reader)
entry = LibArchive.next_header(reader)
arr = read(reader)
close(reader)