Genealogical Data Communication but

I still am dependant on directory
This commit is contained in:
2023-07-31 09:54:55 -07:00
parent 03e2a4ecfb
commit 02445261fe
4 changed files with 649 additions and 0 deletions

View File

@ -32,6 +32,7 @@ public class Worker : BackgroundService
ConsoleKey.D,
ConsoleKey.E,
ConsoleKey.F,
ConsoleKey.G,
ConsoleKey.H,
ConsoleKey.J,
ConsoleKey.K,
@ -93,6 +94,7 @@ public class Worker : BackgroundService
_Logger.LogInformation("D) Clipboard (All Directories),");
_Logger.LogInformation("E) Clipboard (Top Directory Only and File Name Without Extension),");
_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,");
_Logger.LogInformation("J) Set Date from Json Entry");
_Logger.LogInformation("K) Kanban support");
@ -117,6 +119,9 @@ public class Worker : BackgroundService
case ConsoleKey.F:
Helpers.HelperSaveOrCopyContents.SaveOrCopyContents(_Logger, _Args[0], consoleKey);
break;
case ConsoleKey.G:
Helpers.HelperGenealogicalDataCommunication.FileSystemToGenealogicalDataCommunication(_AppSettings, _Logger, _Args);
break;
case ConsoleKey.H:
Helpers.HelperHardcodedFileSearchAndSort.HardcodedFileSearchAndSort(_Logger, _Args[0]);
break;