Component to select files or directories

1

What is the name of that component in Visual Studio / C # that I select the directory and get the file path?

    
asked by anonymous 09.10.2014 / 22:09

1 answer

3

OpenFileDialog . An example of using is here .

For directories, this is called FolderBrowserDialog .

There is an example of FolderBrowserDialog here .

    
09.10.2014 / 22:11