# LibArchive.jl **Repository Path**: Julialang/LibArchive.jl ## Basic Information - **Project Name**: LibArchive.jl - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-03-12 - **Last Updated**: 2022-03-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # LibArchive.jl: A Julia interface for libarchive [![Build Status](https://travis-ci.org/yuyichao/LibArchive.jl.svg?branch=master)](https://travis-ci.org/yuyichao/LibArchive.jl) [![Build status](https://ci.appveyor.com/api/projects/status/05a3b69ak67uyoyr/branch/master?svg=true)](https://ci.appveyor.com/project/yuyichao/libarchive-jl/branch/master) [![codecov.io](http://codecov.io/github/yuyichao/LibArchive.jl/coverage.svg?branch=master)](http://codecov.io/github/yuyichao/LibArchive.jl?branch=master) ## Usage read a binary file with lzma compression ``` reader = LibArchive.Reader(filename) LibArchive.support_format_raw(reader) LibArchive.support_filter_all(reader) arr = read(reader) close(reader) ```