I have some questions about the roots inside the SaveFileDialog:
Even setting up the complete InitialDirectory, for example “C:\Folder” the files are not shown. Am I obligated to change the InitialDirectory to “C:\” and add a new root referring the folder “Folder”?
Am I obligated to select a root to see the files? Can I select a default root programmatically avoiding to select the root manually?
You can set both InitialDirectory and the Root as the same path, “C:\Folder”. If you have the root as “C:\” and the InitialDirectory as “C:\Folder”, the moment you select the root you’ll be inside “C:\Folder”
Unfortunately, you can’t select the root programatically for now.