Skip to content

Commit

Permalink
Update FileDiff.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
bfourk authored Feb 24, 2024
1 parent e35d778 commit 2a5a2d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FileDiff/FileDiff.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ public static void Main(string[] args)
{
Stopwatch sw = new Stopwatch(); // For calculating the total time
Console.Write("Input Directory 1: ");
string? MainDirectory = "/tmp/ramdisk/tmp1";//Console.ReadLine();
string? MainDirectory = Console.ReadLine();
Console.Write("\nInput Directory 2: ");
string? SyncDirectory = "/tmp/ramdisk/tmp2";//Console.ReadLine();
string? SyncDirectory = Console.ReadLine();
if (MainDirectory == null || SyncDirectory == null)
{
Environment.Exit(1);
Expand Down Expand Up @@ -293,4 +293,4 @@ public static void Main(string[] args)
}
Console.WriteLine("Finished");
}
}
}

0 comments on commit 2a5a2d9

Please sign in to comment.