What is the name of that component in Visual Studio / C # that I select the directory and get the file path?
What is the name of that component in Visual Studio / C # that I select the directory and get the file path?
OpenFileDialog
. An example of using is here .
For directories, this is called FolderBrowserDialog
.