I\'d like a SaveFileDialog with the following behavior:
The first time you open it, it goes to \"My Documents\".
Afterwards, it goes to the
I found that setting InitialDirectory to null first works around user history.
InitialDirectory
null
OpenFileDialog dlgOpen = new OpenFileDialog(); dlgOpen.InitialDirectory = null; dlgOpen.InitialDirectory = @"c:\user\MyPath";