From 1c488de5d31d33d6adeff90d0c63c9d89d6e1bcd Mon Sep 17 00:00:00 2001 From: kqnori <96951674+kqnori@users.noreply.github.com> Date: Sun, 28 Jun 2026 12:48:24 +0200 Subject: [PATCH] Print files in directory before moving Added a loop to print files in the directory to be moved. --- Program.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Program.cs b/Program.cs index 5791e97..8f996d0 100644 --- a/Program.cs +++ b/Program.cs @@ -116,6 +116,11 @@ void unrarfix(string fixfile) gamepath = Path.Combine(userProfilePath, "Documents", "games", gamename); + foreach (var file in Directory.GetFiles(dirtomove)) + { + Console.WriteLine($"File: {file}"); + } + Directory.Move(dirtomove, gamepath); // delete old folders and rars