Skip to main content
  1. About
  2. For Teams
Asked
Viewed 15k times
9

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!

1 Answer 1

6

No, it's not possible to combine them. The file browser and directory browser have different UIs because they are accomplishing different tasks.

Most programs handle this by differentiating the task in their File menu. You might have a "Select File" or "Select Folder" option. This would lead you to either the File browser or the Directory browser.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

Post as a guest

Required, but never shown

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.

Morty Proxy This is a proxified and sanitized view of the page, visit original site.