I\'m trying to unzip a file from a winform application. I\'m using this code :
string dezarhiverPath = @AppDomain.CurrentDomain.BaseDirectory + \"\\\\7z.exe\
This maybe can help you.
//You must create an empty folder to remove.
string tempDirectoryPath = @"C:\Users\HOPE\Desktop\Test Folder\zipfolder";
string zipFilePath = @"C:\Users\HOPE\Desktop\7za920.zip";
Directory.CreateDirectory(tempDirectoryPath);
ZipFile.ExtractToDirectory(zipFilePath, tempDirectoryPath);