I'm trying to export my dataTable as an Excel file. I can do this from (https://stackoverflow.com/a/13973274), but I'd like the user to be able to input the location the file is saved to. It seems like the SaveFileDialog class would work well.
My issue stems from the fact that I can't figure out where to find the filepath that has been specified by the user after hitting "save". I need that filepath to input into the ExportToExcel(ExcelFilePath) when I actually do the export of my dataTable.
Sorry if I'm unclear, this is my first time asking a question here.