指定的Tkinter文件对话框的文件路径(Specify File path in tkinter

2019-10-23 13:50发布

我有一个文件对话框,打开一个文件,但是,我想打开该文件是在不同的目录比我写的程序。 该文件对话框打开到我的目录。 是否有指定的FileDialog打开其中一个方法是什么?

下面是相关的代码:

root = Tk()
root.fileName = tkFileDialog.askopenfilename()
f = open(root.fileName, 'r')

我想补充说,我要进入“askopenfilename”呼叫路径,但没有工作:

root.fileName = tkFileDialog.askopenfilename('/C:')

Answer 1:

你想要的是:

root.fileName = tkFileDialog.askopenfilename(initialdir = "C:/<whatever>")

该参数将允许你指定哪个窗口将打开目录。



文章来源: Specify File path in tkinter File dialog