How to Unzip all .Zip file from Folder using C# 4.0 and without using any OpenSource Dll?

前端 未结 6 1451
礼貌的吻别
礼貌的吻别 2020-12-09 03:02

I have a folder containing .ZIP files. Now, I want to Extract the ZIP Files to specific folders using C#, but without using any external assembly or the .Ne

6条回答
  •  遥遥无期
    2020-12-09 04:02

    ZipPackage might be a place to start. It's inside System.IO.Packaging and available in .NET 4.0

    Not anywhere near the simplicity of the .NET 4.5 method mentioned above, but it looks like it can do what you want.

提交回复
热议问题