Exemple #1
0
 public static void DecompressDirectory(string filePath, string decompressPath)
 {
     using (var inf = new UZipDotNet.InflateZipFile(@filePath))
     {
         inf.DecompressAll(decompressPath, true);
     }
 }
Exemple #2
0
 public static void DecompressDirectory(string filePath, string decompressPath)
 {
     using(var inf = new UZipDotNet.InflateZipFile(@filePath))
     {
         inf.DecompressAll(decompressPath, true);
     }
 }