lith 4 년 전
부모
커밋
15cabe62ea
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      FileZip/Cmd/Un7z.cs

+ 4 - 4
FileZip/Cmd/Un7z.cs

@@ -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 });
                     }
                 }