I have used this code given by Marc Gravell in SO to unzip a file
and got this error in this line while ((myEntry = s.GetNextEntry()) != null)
ICSharpCode.SharpZipLib.Zip.ZipException: Wrong Local header signature: 0xAFBC7A37
Any Suggestion??
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Given that hex codes 37 7A equate to the letters ‘7z’, it looks like you’ve got a file in 7Zip format.
This answer may help you access it from .NET: How do I create 7-Zip archives with .NET?