Beispiel #1
0
 /// <summary>
 /// Run inflation on an input file with an output path
 /// </summary>
 /// <param name="inf">Input multipart file</param>
 /// <param name="outputPath">Output directory for extracted files</param>
 private void Inflate(MultiPartFile inf, string outputPath)
 {
     inflate = new InflateImpl(inf, outputPath);
     inflate.SI_INFLATE();
     inflate.Close();
 }
Beispiel #2
0
 /// <summary>
 /// Create a new heuristic unpacker
 /// </summary>
 public WiseUnpacker()
 {
     inflate = null;
 }