Info
Version: | 1.0.0 |
Author(s): | Vangos Pterneas |
Last Update: | Thursday, July 3, 2014 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/LightBuzz/Archiver-WinRT |
NuGet Url: | https://www.nuget.org/packages/archiver-winrt |
Install
Install-Package archiver-winrt
dotnet add package archiver-winrt
paket add archiver-winrt
archiver-winrt Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
Up until now, managing compressed files has been a huge pain in WinRT and Windows 8. Moreover, using the built-in mechanism, you couldn't compress a folder with its subfolders and files.
Archiver makes compressing and decompressing amazingly easy, using just two lines of code:
Archiver archiver = new Archiver();
archiver.Compress(source, destination);
..
where source and destination are the specified files and folders.