yuyichao / LibArchive.jl

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)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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)

About

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)

License:Other


Languages

Language:Julia 100.0%