top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to allow the user to browse for directories in Winforms App using C# ?

0 votes
251 views
How to allow the user to browse for directories in Winforms App using C# ?
posted Jun 21, 2016 by Sathyasree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
FolderBrowserDialog ACfileDialog = new FolderBrowserDialog();
if (ACfileDialog.ShowDialog() == DialogResult.OK)
{
    MessageBox.Show(ACfileDialog.SelectedPath);
}
answer Jun 21, 2016 by Shivaranjini
...