Zip only went 1000 days...

Added Create Note Files
Changed to Path.Combine
This commit is contained in:
2022-05-26 11:15:45 -07:00
parent 0987ee8b80
commit 81472165f7
7 changed files with 66 additions and 14 deletions

View File

@ -45,6 +45,7 @@ internal class Program
ConsoleKey.E,
ConsoleKey.F,
ConsoleKey.L,
ConsoleKey.N,
ConsoleKey.R,
ConsoleKey.T,
ConsoleKey.Z,
@ -79,6 +80,7 @@ internal class Program
log.Information("E) Clipboard (Top Directory Only and File Name Without Extension),");
log.Information("F) Clipboard (All Directories and File Name Without Extension),");
log.Information("L) Log Merge (APC Log [0-9{8}]_*.log),");
log.Information("N) Create Note Files,");
log.Information("R) Rename to old, copy, delete old");
log.Information("T) Too long rename");
log.Information("Z) Zip file(s) by date,");
@ -98,6 +100,9 @@ internal class Program
case ConsoleKey.L:
Helpers.HelperLogMerge.LogMerge(args[0]);
break;
case ConsoleKey.N:
Helpers.HelperCreateNoteFiles.CreateNoteFiles(args[0]);
break;
case ConsoleKey.R:
Helpers.HelperRenameToOldMoveDeleteOldMerge.RenameToOldMoveDeleteOld(log, args[0]);
break;