Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

DotNetZip v1.7 - ZIP manipulation from .NET (C#, VB.NET, etc)

21 views
Skip to first unread message

Cheeso

unread,
Feb 10, 2009, 12:29:51 AM2/10/09
to
DotNetZip has been updated.
DotNetZip is the managed-code library that allows .NET apps to create,
read, and manipulate ZIP archives.

v1.7.2.2 now supports WinZip's AES encryption "extension". With this
update, your apps can read and write AES-encrypted zip archives.

Other recent changes include:
- support for ZIP64
- works on the .NET Framework (for PCs and servers) or .NET Compact
Framework (for devices)
- support for Unicode and arbitrary code pages
- create self extracting archives
- progress events for long-running operations
- embeds a managed-code port of Zlib


Really simple to use.
Example:

using (ZipFile zip = new ZipFile())
{
zip.AddFile("c:\\photos\\personal\\7440-N49th.png");
zip.AddFile("c:\\Desktop\\2008_Annual_Report.pdf");
zip.AddFile("ReadMe.txt");

zip.Save("Archive.zip");
}


It's free, open source. The binary release requires a single DLL at
runtime. There's a full help file available.
Get the release at http://www.codeplex.com/DotNetZip/Release/ProjectReleases.aspx?ReleaseId=18985

An Mac

unread,
Feb 8, 2023, 11:58:04 PM2/8/23
to
Can this project preserve date and timestamps of folders and files? Also, I see this is a old project is it still in development?
0 new messages