If a user wants to create, for example, a project in PyCharm, you would first pick a folder using File Explorer and then the project would be created in that folder.
How can I do that using Python?
I know there is a module called subprocess
which can open File Explorer using this command subprocess.Popen("explorer")
but that's about all I know.
How can I make the user choose a folder a file will be stored in and then create a file in that location?