Browsing file or directory Dialog in Python

半腔热情 提交于 2020-01-11 02:45:28

问题


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:


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.



来源:https://stackoverflow.com/questions/10706571/browsing-file-or-directory-dialog-in-python

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!