GroupDocs.Merger allows developers to combine multiple archive documents in the preferred order and save them as a single ZIP file.
About ZIP File Format
A file with .zip extension is an archive that can hold one or more files or directories. The archive can have compression applied to the included files in order to reduce the ZIP file size. ZIP file format was made public back in February 1989 by Phil Katz for achieving archiving of files and folders. The format was made part of PKZIP utility, created by PKWARE, Inc. Right after the availability of available specifications, many companies made ZIP file format part of their software utilities including Microsoft (since Windows 7), Apple (Mac OS X ) and many others.
Download and Configure
Use the downloads section to download API DLLs or MSI installer or NuGet:
PM>Install-PackageGroupDocs.Merger
How to merge archives to ZIP file
The following example demonstrates how to merge archives to ZIP file with several lines of C# code:
Create an instance of Merger class and pass source archive file path as a constructor parameter. You may specify absolute or relative file path as per your requirements.
Add another archive file to merge with Join method. Repeat this step for other archive documents you want to merge.
Call Merger class Save method and specify the filename for the merged archive file as parameter.
// Load the source archive fileusing(Mergermerger=newMerger(@"c:\sample1.zip")){// Add another archive file to mergemerger.Join(@"c:\sample2.tar");// Add next archive file to mergemerger.Join(@"c:\sample3.rar");// Merge archive files and save resultmerger.Save(@"c:\merged.zip");}