I am using Visual Studios where the below shown code is set. After you've entered the two paths, a message will come up stating the report will now produce, and the rest of the script (not shown below) will run and produce the Workbook. However, if a folder path is entered that is invalid, Visual Studios says as much in that "Does not exist". What I want to happen is IF the specified path exists, for the message to pop up saying it'll now produce, as it does now, but also as part of the Console App, for it to display something like "Path Invalid, please try again"
Console.Write("Please enter the source path for the Checks Workbook, including the name of the file (Not including the file extension): ");
string checksPath;
checksPath = Console.ReadLine()+".xlsx";
Console.Write("Please enter the folder location you wish your report to go to (Not including the file extension): ");
string reportDest;
reportDest = Console.ReadLine()+".xlsx";
Console.WriteLine("Your report will now produce");