-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IFileDialog Folder selector #35
Comments
@capr |
Note that winapi doesn't use the COM interface to show the file dialog box but standard win32 API. There probably is an option to select a folder with that API too but I haven't checked. |
Oops, no there isn't. MSDN says: To display a dialog box that allows the user to select a directory instead of a file, call the |
@capr He use |
Hello. According to Microsoft manuals, the IFileDialog can have a option
FOS_PICKFOLDERS
to enable folder selection instead of file.Can that be accessed by winapi and be a new feature?
Thanks
https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-ifiledialog-setoptions
https://docs.microsoft.com/ru-ru/windows/desktop/api/shobjidl_core/ne-shobjidl_core-_fileopendialogoptions
The text was updated successfully, but these errors were encountered: