Hi is there any other option apart from using Shell32 to unzip file that support .net 3.5 framework? Using system.Io.compression is not supported in .net 3.5 framework
Asked
Active
Viewed 542 times
1
-
Can you provide your code? What do you mean by 'Not Supported'? – Nathan A Jul 12 '14 at 01:11
-
@NathanA The System.IO.Compression class `ZipFile` is only available starting in the .NET Framework 4.5. – vcsjones Jul 12 '14 at 01:13
-
1http://icsharpcode.github.io/SharpZipLib/ is an option too. – Inisheer Jul 12 '14 at 01:14
-
possible duplicate of [Unzip files programmatically in .net](http://stackoverflow.com/questions/836736/unzip-files-programmatically-in-net) – Inisheer Jul 12 '14 at 01:15
-
1[System.Io.Compression](http://msdn.microsoft.com/en-us/library/system.io.compression(v=vs.80).aspx) gos back to NET 2.0, it is only `ZipFile` which showed up in 4.5. There are gobs of NET related zip libraries including a C# one for 7zip, your Google must be broke – Ňɏssa Pøngjǣrdenlarp Jul 12 '14 at 01:15
-
http://sevenzipsharp.codeplex.com/releases/view/51254 – Ňɏssa Pøngjǣrdenlarp Jul 12 '14 at 01:25
-
@Inisheer I download the file but cannot open it and I'm using VS 2013. Is there a way to open it with VS 2013? – plokuun Jul 12 '14 at 02:55
-
@plokuun It should be a .dll file correct? If so, just add it as a reference in your project. – Inisheer Jul 12 '14 at 05:12
-
What's wrong in using Shell32 ? – arturn Mar 28 '17 at 10:04