I'm using wxFileDialog to save a file. I would like the default directory point to: C:\Documents and Settings\Renaud\My documents or whatever is the default 'My documents' folder for the current user.
At first I though to use wxGetHomeDir() but the problem is that this return the following path: C:\Documents and Settings\Renaud\
so I miss the 'My documents' part.
The problem is that this folder 'name' change depending of the language of the OS you use.... so it would not work to simply add 'My Documents' to the path string

I guess the 'name' of the folder is written somewhere in the windows registry... I'm not experienced enough to know how to access it...
Is there any wx standard way to do it or to directly get a path to this user folder ? This would be something nice to implement in wxWidgets if it doesn't exist yet....
Any suggestion ?
Thanks