DotNetZip - 显示提取进度?

时间:2016-08-15 03:09:10

标签: c# .net zip progress dotnetzip

此问题已解决。我的错误是在我的第二个代码块中我使用的是SaveProgress而不是ExtractProgress,我在设置事件处理程序之前使用了Zip.ExtractAll。感谢Bradley Moorfield帮助我。

所以我使用DotNetZip库在我的代码中压缩/解压缩zip文件。我能够用这段代码完成显示压缩百分比:

                using (ZipFile zip = new ZipFile())
                {
                    zip.AddDirectory(filePath);
                    var mb = GetDirectorySize(filePath) / 1048576;
                    long timesRunNeeded = mb / 100;
                    if (mb % 100 > 0) { timesRunNeeded++; }
                    if (mb <= 100) { timesRunNeeded = 1; }
                    int timesRun = 1;
                    int pastP = 0;
                    zip.SaveProgress += (o, args) =>
                    {
                        var percentage = (int)(1.0d / args.TotalBytesToTransfer * args.BytesTransferred * 100.0d);
                        if (pastP != percentage)
                        {
                            clearLine();
                            setColor(ConsoleColor.Gray); Console.Write("   Percentage: "); setColor(ConsoleColor.Green);
                            Console.Write(percentage + " [" + timesRun + "/" + timesRunNeeded + "]");
                            if ((percentage == 100) && (pastP >= 0) && (pastP <= 99))
                            {
                                timesRun++;
                            }
                        }
                        pastP = percentage;
                    };
                    zip.Save(filePath + ".zip");
                }

之所以这样是因为它一次压缩100 mb,所以例如,如果一个文件夹是2153 mb,那么它将达到100%22次。这一切都很完美,我喜欢我拥有它的方式,但是我在从zip解压缩到目录时显示完成百分比时遇到了一些麻烦。 到目前为止,这是我的代码:

                        using (ZipFile zip = ZipFile.Read(filePath))
                        {
                            Directory.CreateDirectory(filePath.Replace(".zip", ""));
                            zip.ExtractAll(filePath.Replace(".zip", ""), ExtractExistingFileAction.OverwriteSilently);
                            zip.SaveProgress += (o, args) =>
                            { //Fix this, not showing percentage of extraction.
                                var percentage = (int)(1.0d / args.TotalBytesToTransfer * args.BytesTransferred * 100.0d);
                                clearLine();
                                Console.Write(percentage);
                            };
                        }

无论出于何种原因,此代码根本不打印任何百分比,因此我猜测它与我实际计算百分比的方式有关。压缩与提取时应该不同吗?提前谢谢。

1 个答案:

答案 0 :(得分:3)

您需要在开始提取之前添加事件处理程序。此外,SaveProgress事件在保存期间触发,还有一个不同的处理程序,ExtractProgress在提取期间触发。

See the reference for example usage (web.archive.org)

private static bool justHadByteUpdate = false;
public static void ExtractProgress(object sender, ExtractProgressEventArgs e)
{
  if(e.EventType == ZipProgressEventType.Extracting_EntryBytesWritten)
  {
    if (justHadByteUpdate)
      Console.SetCursorPosition(0, Console.CursorTop);

    Console.Write("   {0}/{1} ({2:N0}%)", e.BytesTransferred, e.TotalBytesToTransfer,
              e.BytesTransferred / (0.01 * e.TotalBytesToTransfer ));
    justHadByteUpdate = true;
  }
  else if(e.EventType == ZipProgressEventType.Extracting_BeforeExtractEntry)
  {
    if (justHadByteUpdate)
      Console.WriteLine();
    Console.WriteLine("Extracting: {0}", e.CurrentEntry.FileName);
    justHadByteUpdate= false;
  }
}

public static ExtractZip(string zipToExtract, string directory)
{
  string TargetDirectory= "extract";
  using (var zip = ZipFile.Read(zipToExtract)) {
    zip.ExtractProgress += ExtractProgress;
    foreach (var e in zip1)
    {
      e.Extract(TargetDirectory, true);
    }
  }
}