fluorine / FluentDecompressor

Fluent syntax for decompressing archives, powered by SharpCompress.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FluentDecompressor

A small library to use fluent syntax to decompress archives.

Currently, this library supports only version 4 RAR file format. This library is powered by SharpCompress.

Usage

For example,

using FluentDecompressor;

//...
FluentFileDecompressor
    .ForArchive(archivePath)
    .WithPassword(password)   // Password is optional
    .DecompressInto(outputDirectory);

Installation

Install the Nuget, which can be installed using this command:

Install-Package FluentDecompressor

License

MIT License.

SharpCompress has its own License.

About

Fluent syntax for decompressing archives, powered by SharpCompress.

License:MIT License


Languages

Language:C# 100.0%