From feb5ac2e79dff923406c7f7711727025f9c9b56c Mon Sep 17 00:00:00 2001 From: socketbug <79904824+socketbug@users.noreply.github.com> Date: Tue, 2 Mar 2021 10:52:25 +0100 Subject: [PATCH] Update Program.cs - Added more comments to make it easier to understand for beginners - Updated the first displayed message --- Discord Cache Viewer/Program.cs | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Discord Cache Viewer/Program.cs b/Discord Cache Viewer/Program.cs index cae1634..02584d0 100644 --- a/Discord Cache Viewer/Program.cs +++ b/Discord Cache Viewer/Program.cs @@ -11,10 +11,13 @@ namespace Discord_Cache_Viewer /// public static async Task Main() { - Console.WriteLine("Please enter the Discord cache path"); + Console.WriteLine("Please enter the Discord cache path down below:"); + // Begin the processing after a new console line has been received from the user begin_processing(Console.ReadLine()); Console.WriteLine("Processed all files, closing in 10 seconds"); + // Wait 10,000ms (10s) await Task.Delay(10000); + // Collect the garbage and close GC.Collect(); Environment.Exit(0); } @@ -25,17 +28,22 @@ namespace Discord_Cache_Viewer /// The cache folder path. private static void begin_processing(string path) { + // Get all file paths var files = Directory.GetFiles(path); + // Constants for more efficient memory management const string header = "PNG", extension = ".png"; const ushort index = 0; for (short i = 0; i < files.Length; i++) // UShort has a greater max length than a signed Short. { + // Cache the file path var filePath = files[i]; // We only have to read the first line and check if it has the PNG header. + // This also saves some processing time, as we don't have to check the entire file for "PNG", and it reduces false positives. if (File.ReadAllLines(filePath)[index].Contains(header)) Console.WriteLine($"{filePath} - Added .png extension"); + // "Move" => "Rename", alright then Microsoft. File.Move(filePath, filePath + extension); } } } -} \ No newline at end of file +}