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

    From An Mac@21:1/5 to Cheeso on Wed Feb 8 20:57:32 2023
    On Tuesday, February 10, 2009 at 12:29:51 AM UTC-5, Cheeso wrote:
    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

    Can this project preserve date and timestamps of folders and files? Also, I see this is a old project is it still in development?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)