DotNetZip on CodePlex: http://dotnetzip.codeplex.com/ 详细的可以看源代码……总之感觉比SharpZipLib好用.而且DotNetZip支持VB,C#以及任何.NET语言. 压缩: //定义文件路径 string filename = @"d:/test.rar"; using (ZipFile zip = new ZipFile()) { zip.AddFile(@"C:/text.txt", "tx…
public static class RARHelper { public static bool ExistsWinRar() { bool result = false; string key = @"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\WinRAR.exe"; RegistryKey registryKey = Registry.LocalMachine.OpenSubKey(key); if (registr…