|
@@ -109,14 +109,14 @@ namespace FileZip.Cmd
|
|
|
|
|
|
if (entry.IsDirectory)
|
|
|
{
|
|
|
- if (printDirectory) ConsoleHelp.Log($"[{ finished }/{sum} d] " + entry.Key);
|
|
|
+ if (printDirectory) ConsoleHelp.Log($"[{ finished }/{sum} d] " + entry.Key);
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
-
|
|
|
- if (printFile) ConsoleHelp.Log($"[{ finished }/{sum} f] " + entry.Key);
|
|
|
- entry.WriteToDirectory(output, new ExtractionOptions() { ExtractFullPath = true, Overwrite = true });
|
|
|
+ if (printFile) ConsoleHelp.Log($"[{ finished }/{sum} f] " + entry.Key);
|
|
|
}
|
|
|
+
|
|
|
+ entry.WriteToDirectory(output, new ExtractionOptions() { ExtractFullPath = true, Overwrite = true });
|
|
|
}
|
|
|
}
|
|
|
|