I'm doing a small project in Python and I would like to browse a file or directory to get their path.
I'm using Tkinter and I was abble to find only a file browser:
filename = tkFileDialog.askopenfilename(parent=root,title='Open file to encrypt')
or only a directory browser:
dir = tkFileDialog.askdirectory(parent=root, title='Open file to encrypt')
Is it possible to combine these two? THank you for all the answers!