标签:解压缩

C#解压缩

 public void UnZip(string vToPath, string vPwd) { if (string.IsNullOrEmpty(vToPath)) { return; } if (!Directory.Exists(vToPath) || !File.Exists(this.ZipFile)) { Directory.CreateDir……

C#代码使用WinRar解压.tar.gz文件

解压缩 压缩 c# 我电脑上装的WinRar解压缩文件,现在想用代码实现解压.tar.gz文件的功能!请大侠帮忙 在线等! 40分 这个就是你要的了 http://www.cnblogs.com/cnjava/archive/2012/03/03/2378654.html 不行哦,我已经试过了,那是解压rar文……