For several hours now, I have been trying to open the modern folder selection dialog using python.
My application is currently using pywebview's create_file_dialog. Which works as intended, but it's really not very convient for the user. See picture below.
What I would like, is this one:
Besides looking nicer and having a much more intuative design, it also uses the last selected path as the initial selection.
I have tried to use pywin32, but I have not found a way to create this exact dialog (only different forms of the default file selection dialog).
From my research I'd say that I probably need the IFileOpenDialog. But there seems to be no way to use IFileOpenDialog using Python, or is there?
Does anyone know how to create said dialog?

