Reputation: 4084
which one is better to unzip a file in C# using window shell or uzipping it in c# using third party software like DotNetZip?
Upvotes: 5
Views: 529
Reputation: 12966
Definitely use a library, it will (should) be faster, and easier to test and debug. I've used SharpZipLib in the past with no problems.
Upvotes: 1
Reputation: 55001
DotNetZip has worked very well for me in WinForms apps.
The built in Windows Zip functionality seems quite picky about files and fails easy.
Upvotes: 4