I would like to save the path that the file should be saved at but I do not want the user to add the name of the file and its format. Just select the map where the file should be saved.
The code below doesn't work to save the path because you also need to adda file name.
SaveFileDialog saveFileDialog = new SaveFileDialog();
if (saveFileDialog.ShowDialog() == true)
{
lblDestination.Content = saveFileDialog.FileName;
}
Thank you!