My code processes all the files in a folder on a Windows box. I want to offer the user (who happens to also be me) the option to select the folder to be processed, using the standard File Chooser dialog.
I am trying to use the GetOpenFileName function to make this happen. (I am actually calling it from Python via pywin32, but that shouldn't be relevant.)
I can get it to select a particular file, but I can't see any options to let the user select a folder instead.
Is there a flag combination I haven't understood, am I calling the wrong function entirely or is there another idiom for doing this?