I need a control like SaveFileDialog
that lets me choose a directory instead of a file. It should also let me specify the directory by pasting text. SaveFileDialog does not allow this.
I have tried FolderBrowserDialog
, but it does not meet my requirements because it does not support pasting the directory path as text. Some of the directory I'm working with may be nested 10 levels or more, so being forced to navigate via point-and-click is not enough.
Thanks in advance.