Cake.Compression

Cake AddIn which provides compression functionality for BZip2, GZip and Zip.

#addin nuget:?package=Cake.Compression&version=0.3.0

dotnet add package Cake.Compression --version 0.3.0

<PackageReference Include="Cake.Compression" Version="0.3.0" />

Aliases

Contains functionality related to compress files.

General

BZip2Compress(DirectoryPath, FilePath, IEnumerable<FilePath>, int) Create a BZip2 Tar archive of the specified files.
BZip2Compress(DirectoryPath, FilePath, IEnumerable<FilePath>) Create a BZip2 Tar archive of the specified files.
BZip2Compress(DirectoryPath, FilePath, IEnumerable<string>, int) Create a BZip2 Tar archive of the specified files.
BZip2Compress(DirectoryPath, FilePath, IEnumerable<string>) Create a BZip2 Tar archive of the specified files.
BZip2Compress(DirectoryPath, FilePath, int) Create a BZip2 Tar archive of the specified directory.
BZip2Compress(DirectoryPath, FilePath, string, int) Create a BZip2 Tar archive of the files matching the specified pattern.
BZip2Compress(DirectoryPath, FilePath, string) Create a BZip2 Tar archive of the files matching the specified pattern.
BZip2Compress(DirectoryPath, FilePath) Create a BZip2 Tar archive of the specified directory.
BZip2Uncompress(FilePath, DirectoryPath) Uncompress the specified BZip2 Tar file.
GZipCompress(DirectoryPath, FilePath, IEnumerable<FilePath>, int) Create a GZip Tar archive of the specified files.
GZipCompress(DirectoryPath, FilePath, IEnumerable<FilePath>) Create a GZip Tar archive of the specified files.
GZipCompress(DirectoryPath, FilePath, IEnumerable<string>, int) Create a GZip Tar archive of the specified files.
GZipCompress(DirectoryPath, FilePath, IEnumerable<string>) Create a GZip Tar archive of the specified files.
GZipCompress(DirectoryPath, FilePath, int) Create a GZip Tar archive of the specified directory.
GZipCompress(DirectoryPath, FilePath, string, int) Create a GZip Tar archive of the files matching the specified pattern.
GZipCompress(DirectoryPath, FilePath, string) Create a GZip Tar archive of the files matching the specified pattern.
GZipCompress(DirectoryPath, FilePath) Create a GZip Tar archive of the specified directory.
GZipUncompress(FilePath, DirectoryPath) Uncompress the specified GZip Tar file.
ZipCompress(DirectoryPath, FilePath, IEnumerable<FilePath>, int) Create a Zip archive of the specified files.
ZipCompress(DirectoryPath, FilePath, IEnumerable<FilePath>) Create a Zip archive of the specified files.
ZipCompress(DirectoryPath, FilePath, IEnumerable<string>, int) Create a Zip archive of the specified files.
ZipCompress(DirectoryPath, FilePath, IEnumerable<string>) Create a Zip archive of the specified files.
ZipCompress(DirectoryPath, FilePath, int) Create a Zip archive of the specified directory.
ZipCompress(DirectoryPath, FilePath, string, int) Create a Zip archive of the files matching the specified pattern.
ZipCompress(DirectoryPath, FilePath, string) Create a Zip archive of the files matching the specified pattern.
ZipCompress(DirectoryPath, FilePath) Create a Zip archive of the specified directory.
ZipUncompress(FilePath, DirectoryPath) Uncompress the specified Zip Tar file.