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