Is there a way to set or get the initial directory used by the vista file open dialog without setting the InitialDirectory property on the file open dialog?
I want my WPF to (on startup) set the default folder once for all the Open/Save dialogs. If you notice in Vista as long as the machine is running it continues to default/track the user's last selected directory from any file open/save as dialogs. Notepad or any programs act this way.
The reason I am trying to accomplish this is because I don't want to have to track it within my app, setting and saving the folder. I would just like to set the default and let vista track it after that.
Directory.SetCurrentDirectory does not do it.