1

This is about Windows API in C++ .I have found a lot of things for making dialogs for opening and saving files, but I can't seem to find the method for making a folder dialog. It would make sense that it would be there because windows apps have open folder dialogs.

  • Use either 1) [`SHBrowseForFolder()`](https://learn.microsoft.com/en-us/windows/win32/api/shlobj_core/nf-shlobj_core-shbrowseforfolderw), or 2) [`IFileOpenDialog`](https://learn.microsoft.com/en-us/windows/win32/api/shobjidl_core/nn-shobjidl_core-ifileopendialog) with the `FOS_PICKFOLDERS` option. – Remy Lebeau Sep 01 '22 at 23:30

0 Answers0