GetRecursiveLines only when

StartAt and Destination are supplied
nuget-lower
HelperGenealogicalDataCommunication
This commit is contained in:
2023-08-31 08:31:10 -07:00
parent 096262b2eb
commit 84cda2e57f
7 changed files with 98 additions and 73 deletions

View File

@ -34,6 +34,7 @@ public class Worker : BackgroundService
ConsoleKey.F,
ConsoleKey.G,
ConsoleKey.H,
ConsoleKey.I,
ConsoleKey.J,
ConsoleKey.K,
ConsoleKey.L,
@ -95,20 +96,20 @@ public class Worker : BackgroundService
_Logger.LogInformation("F) Clipboard (All Directories and File Name Without Extension),");
_Logger.LogInformation("G) Genealogical Data Communication");
_Logger.LogInformation("H) Hardcoded file search and sort,");
// I
_Logger.LogInformation("J) Set Date from Json Entry");
_Logger.LogInformation("K) Kanban support");
_Logger.LogInformation("I) Ignore case and rename files to lowercase,");
_Logger.LogInformation("J) Set Date from Json Entry,");
_Logger.LogInformation("K) Kanban support,");
_Logger.LogInformation("L) Log Merge (APC Log [0-9(8)]_*.log),");
_Logger.LogInformation("N) Create Note Files,");
_Logger.LogInformation("M) Markdown Wiki Link Verification,");
// O
// P
// Q
_Logger.LogInformation("R) Rename to old, copy, delete old");
_Logger.LogInformation("S) Set Date from Zip Entry");
_Logger.LogInformation("T) Too long rename");
_Logger.LogInformation("U) Links for Hugo");
_Logger.LogInformation("V) VSCode Hope Sort");
_Logger.LogInformation("R) Rename to old, copy, delete old,");
_Logger.LogInformation("S) Set Date from Zip Entry,");
_Logger.LogInformation("T) Too long rename,");
_Logger.LogInformation("U) Links for Hugo,");
_Logger.LogInformation("V) VSCode Hope Sort,");
// W
// X
// Y
@ -132,6 +133,9 @@ public class Worker : BackgroundService
case ConsoleKey.H:
Helpers.HelperHardcodedFileSearchAndSort.HardcodedFileSearchAndSort(_Logger, _Args[0]);
break;
case ConsoleKey.I:
Helpers.HelperSaveOrCopyContents.IgnoreCaseAndRenameFilesToLowercase(_Logger, _Args[0]);
break;
case ConsoleKey.J:
Helpers.HelperPackageFilesByDate.SetDateFromJsonEntry(_Logger, _Args[0]);
break;