Skip to content

Commit

Permalink
Silly mistake, forgot to actually delete the files
Browse files Browse the repository at this point in the history
  • Loading branch information
Praveshan0710 committed Aug 16, 2024
1 parent 1277177 commit 0df3f6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ private static void RemoveModeFiles(string modePrefix)
var fs = File.OpenRead(file);
total += fs.Length;
fs.Dispose();
//File.Delete(file);
File.Delete(file);
Debug.WriteLine($"Removed {file}");
sw.WriteLine($"Removed {file}");
}
Expand All @@ -74,7 +74,7 @@ private static void RemoveModeFiles(string modePrefix)
var fs = File.OpenRead(file);
total += fs.Length;
fs.Dispose();
//File.Delete(file);
File.Delete(file);
Debug.WriteLine($"Removed {file}");
sw.WriteLine($"Removed {file}");
}
Expand Down

0 comments on commit 0df3f6f

Please sign in to comment.