From e883f0c7d4f879dff600e684b6d8b1a5498d2691 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 2 Sep 2025 21:52:06 -0400 Subject: [PATCH] Different visual indicator of extracted file scans --- BinaryObjectScanner/Scanner.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BinaryObjectScanner/Scanner.cs b/BinaryObjectScanner/Scanner.cs index 467a91dc..9fc66192 100644 --- a/BinaryObjectScanner/Scanner.cs +++ b/BinaryObjectScanner/Scanner.cs @@ -115,7 +115,7 @@ namespace BinaryObjectScanner // Get the reportable file name string reportableFileName = file; if (reportableFileName.StartsWith(tempFilePath)) - reportableFileName = reportableFileName.Substring(tempFilePathWithGuid.Length); + reportableFileName = $"--> {reportableFileName.Substring(tempFilePathWithGuid.Length)}"; // Checkpoint _fileProgress?.Report(new ProtectionProgress(reportableFileName, i / (float)files.Count, "Checking file" + (file != reportableFileName ? " from archive" : string.Empty))); @@ -148,7 +148,7 @@ namespace BinaryObjectScanner // Get the reportable file name string reportableFileName = path; if (reportableFileName.StartsWith(tempFilePath)) - reportableFileName = reportableFileName.Substring(tempFilePathWithGuid.Length); + reportableFileName = $"--> {reportableFileName.Substring(tempFilePathWithGuid.Length)}"; // Checkpoint _fileProgress?.Report(new ProtectionProgress(reportableFileName, 0, "Checking file" + (path != reportableFileName ? " from archive" : string.Empty)));