How can I present a control to the user that allows him/her to select a directory?
There doesn\'t seem to be any native .net controls which do this?
string folderPath = ""; FolderBrowserDialog folderBrowserDialog1 = new FolderBrowserDialog(); if (folderBrowserDialog1.ShowDialog() == DialogResult.OK) { folderPath = folderBrowserDialog1.SelectedPath ; }