In the FolderBrowserDialog control (C# form app) I want to define a custom root folder, so that the folder selecting structure is starting with this custom folder. For example C:\data\archive folder should be the root folder and I should see at the top this folder. How can I do this? (Remark I am currently able to select the start folder with following code, but this not what I want)
openFolderDialog1.SelectedPath = "C:\\data\\archive"