Is there any way to set the initial directory of a folder browser dialog to a non-special folder? This is what I\'m currently using
fdbLocation.RootFolder = Envir
To set the directory selected path and the retrieve the new directory:
dlgBrowseForLogDirectory.SelectedPath = m_LogDirectory; if (dlgBrowseForLogDirectory.ShowDialog() == DialogResult.OK) { txtLogDirectory.Text = dlgBrowseForLogDirectory.SelectedPath; }