Browsing file or directory Dialog in Python

后端 未结 1 1470
一个人的身影
一个人的身影 2021-01-05 14:10

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

相关标签:
1条回答
  • 2021-01-05 14:57

    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.

    0 讨论(0)
提交回复
热议问题