Skip to content

A simple wrapper for natively zipping and unzipping files in .net 4.5.0+

License

Notifications You must be signed in to change notification settings

krugertech/CoreZip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CoreZip (Retired)

• Very simple wrapper for natively zipping and unzipping files in .net 4.5.0+

Usage

using Simplified.IO;

namespace Demo
{
    class Program
    {
        static void Main(string[] args)
        {            
            CoreZip.Compress(@"c:\mydir", @"C:\myfile.zip", CoreZip.ExistingArchiveAction.Update);
            CoreZip.Uncompress(@"C:\myfile.zip", @"c:\");
        }
    }
}

Credit

Originally based off the work of Tim Corey on CodeProject.

About

A simple wrapper for natively zipping and unzipping files in .net 4.5.0+

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages