Eu quero abrir todas as caixas de diálogo de seleção de arquivos para o último local usado (não específico do aplicativo)
Isso não é possível, pois os aplicativos são responsáveis por definir quaisquer locais de diretório padrão em seus próprios diálogos.
Isso é feito usando a API Common Item Dialog , que foi implementado no Windows Vista e usado em todas as versões posteriores do Windows.
O Diálogo Item Comum é usado pela caixa de diálogo Abrir e pela caixa de diálogo Salvar (que compartilha a maior parte de sua funcionalidade).
A API usa IFileDialog :: SetDefaultFolder para definir o local da pasta padrão ao criar uma caixa de diálogo Abrir ou Salvar como, específica de um aplicativo específico):
The default folder is the folder in which the dialog starts the first time a user opens it from your application. After that, the dialog will open in the last folder a user opened or the last folder they used to save an item. See State Persistence for more details.
You can force the dialog to always show the same folder when it opens, regardless of previous user action, by calling
IFileDialog::SetFolder
. However, we do not recommended doing this. If you callSetFolder
before you display the dialog box, the most recent location that the user saved to or opened from is not shown. Unless there is a very specific reason for this behavior, it is not a good or expected user experience and should be avoided. In almost all instances,IFileDialog::SetDefaultFolder
is the better method.When saving a document for the first time in the Save dialog, you should follow the same guidelines in determining the initial folder as you did in the Open dialog. If the user is editing a previously existing document, open the dialog in the folder where that document is stored, and populate the edit box with that document's name. Call
IFileSaveDialog::SetSaveAsItem
with the current item prior to callingShow
.
Diálogo Item Comum (Windows) . p>
Portanto, é responsabilidade de cada aplicativo individual decidir como eles lidarão com o conjunto de diretórios padrão ao abrir esses diálogos.