Add 2024 days
This commit is contained in:
@@ -17,8 +17,8 @@ namespace AdventOfCode.InputFetcher
|
||||
var sessionKey = Console.ReadLine();
|
||||
Console.WriteLine("Please input the target directory for the input files! Default: Current working directory");
|
||||
var targetDir = SanitizeInput(Console.ReadLine(), Directory.GetCurrentDirectory());
|
||||
Console.WriteLine("File Name Format? Default: \"{YEAR}_{TYPE}_Day_{DAY}{PART}.txt\" => 2022_Input_Day_1.txt or 2022_Answer_Day_1-PartB");
|
||||
var format = SanitizeInput(Console.ReadLine(), "{YEAR}_{TYPE}_Day_{DAY}{PART}.txt");
|
||||
Console.WriteLine("File Name Format? Default: \"{YEAR}_{TYPE}_Day_{DAY}{PART}.tst.data\" => 2022_Input_Day_1.tst.data or 2022_Answer_Day_1A.tst.data");
|
||||
var format = SanitizeInput(Console.ReadLine(), "{YEAR}_{TYPE}_Day_{DAY}{PART}.tst.data");
|
||||
Console.WriteLine("Pull Answers? (Y/N) Default: Y");
|
||||
var answer = SanitizeInput(Console.ReadLine(), "Y");
|
||||
Console.WriteLine("Overwrite? (Y/N) Default: N");
|
||||
@@ -44,7 +44,7 @@ namespace AdventOfCode.InputFetcher
|
||||
//Input data not available yet
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user