using (var openFileDialog1 = new OpenFileDialog()) { openFileDialog1.Reset(); if (!string.IsNullOrEmpty(ExcelFilePath)) {
I don't think there is anything built in for that. Just check before you open the dialog:
if (!Directory.Exists(initialDirectory)) { openFileDialog1.InitialDirectory = @"C:\"; }