~ over | split

This commit is contained in:
2025-05-17 07:51:53 -07:00
parent 8f22f188a2
commit 8ca489d818
10 changed files with 12 additions and 12 deletions

View File

@ -6,7 +6,7 @@ internal static partial class Helper20250421 {
internal static void FreeFileSyncChangeCreatedDate(ILogger<Worker> logger, List<string> args) {
string searchPattern = args[2];
string[] searchPatterns = args[3].Split('|');
string[] searchPatterns = args[3].Split('~');
string sourceDirectory = Path.GetFullPath(args[0]);
if (searchPatterns.Length != 2)
throw new NotImplementedException($"Not the correct number of {searchPatterns} were passed!");