• Very simple wrapper for natively zipping and unzipping files in .net 4.5.0+
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:\");
}
}
}
Originally based off the work of Tim Corey on CodeProject.