c#解压文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#解压文件相关的知识,希望对你有一定的参考价值。
今天做了一个异步上传文件后再直接解压的一个东西。到解压这找了好多资料,做了1个多小时,贴出来,给自己张张记性。
HttpPostedFileBase imgFile = Request.Files[0];//获取到文件流 filename = imgFile.FileName; imgFile.SaveAs(Server.MapPath("../Test/" + filename));//保存到本地 var archive = ArchiveFactory.Open(Server.MapPath("../Test/" + filename));//通过Server.MapPath找到文件的绝对路径 foreach (var entry in archive.Entries) { if (!entry.IsDirectory)//开始解压 { entry.WriteToDirectory(Server.MapPath("../Test/"), ExtractOptions.ExtractFullPath | ExtractOptions.Overwrite);//解压地址也是要绝对路径的 } }
然后要补充的是需要引用一个dll 叫SharpCompress.dll 下载地址:http://sharpcompress.codeplex.com/#
以上是关于c#解压文件的主要内容,如果未能解决你的问题,请参考以下文章