GithubHelp home page GithubHelp logo

sqlar-rs's Introduction

sqlar

Crates.io version docs.rs docs License: MIT

sqlar - a SQLite Archive utility

An "SQLite Archive" is a file container similar to a ZIP archive or Tarball but based on an SQLite database.

See the SQLite Archive Files documentation for all information.

This library allows to list archive contents, extract files from archives or create a new archive. It's main usage is throug the command line utility sqlar.

Installation

The command line utility sqlar can be installed through cargo:

cargo install sqlar

Usage

List the content of an archive

sqlar l path/to/file.sqlar

Extract an archive

sqlar x path/to/file.sqlar path/to/dest/

Create an archive

sqlar c path/to/new-archive.sqlar path/to/source/

Example

The library can also be used progamatically.

List files in an archive

use sqlar::with_each_entry;

with_each_entry("path/to/archive.sqlar", false, |entry| {
   println!("File: {}, file type: {:?}, mode: {}", entry.name, entry.filetype, entry.mode);
   Ok(())
});

Create an archive

use sqlar::create;

create("path/to/new-archive.sqlar", &["path/to/source"]);

Extract all files from an archive

use sqlar::extract;

extract("path/to/archive.sqlar", "path/to/dest");

License

MIT. See LICENSE.

sqlar-rs's People

Contributors

badboy avatar nickelc avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

icodein

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.