I am writing a quick and dirty application that reads all the files from a given directory. I'm currently using the OpenFileDialog to choose a directory and just culling off the file name that it provides. It seems like there should be a way to just choose directories though, but in a quick browsing of MSDN I didn't find it.
If you have a way in winforms or more preferably in WPF I'm all ears.
You'll want to use a FolderBrowserDialog.
using FORMS = System.Windows.Forms; var dialog = new System.Windows.Forms.FolderBrowserDialog(); FORMS.DialogResult result = dialog.ShowDialog(); if (result == FORMS.DialogResult.OK) { MessageBox.Show("Result: " + dialog.SelectedPath); }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With