diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 63a1573..be13523 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -9,12 +9,9 @@
-
-
-
+
-
@@ -31,6 +28,13 @@
+
+
+
@@ -153,7 +157,21 @@
1672874587158
-
+
+ 1674655068301
+
+
+
+ 1674655068301
+
+
+ 1674655119812
+
+
+
+ 1674655119812
+
+
@@ -187,7 +205,8 @@
-
+
+
diff --git a/src/Main.java b/src/Main.java
index ae4645e..eaad972 100644
--- a/src/Main.java
+++ b/src/Main.java
@@ -153,9 +153,9 @@ public class Main {
}
public static void ask(boolean color, long bytes, List deleteThem) {
if (color) {
- System.out.println(ConsoleColors.RED_BOLD + (bytes / 8000000) + " unnecessary MB found, do you want to Delete them? Y / N" + ConsoleColors.RESET);
+ System.out.println(ConsoleColors.RED_BOLD + (bytes / 8000000) + " unnecessary MB in " + deleteThem.size() + " Files found, do you want to Delete them? Y / N" + ConsoleColors.RESET);
} else {
- System.out.println((bytes / 8000000) + " unnecessary MB found, do you want to Delete them? Y / N");
+ System.out.println((bytes / 8000000) + " unnecessary MB in " + deleteThem.size() + " Files found, do you want to Delete them? Y / N");
}
Scanner input = new Scanner(System.in);
String answer = input.next();