gpt4 book ai didi

python - 允许用户在 tkinter askopenfilename() 中键入路径

转载 作者:太空狗 更新时间:2023-10-30 01:37:38 24 4
gpt4 key购买 nike

环境:

OS: Windows 7  
Python 2.7.10 :: Anaconda 2.2.0 (64-bit)
Tkinter.TkVersion 8.5

我目前正在使用 askopenfilename() 允许用户在 Windows 7 上指定/打开文件。这会生成一个对话框,允许用户通过此处突出显示的下拉菜单导航目录:

askopenfilename() dialog

是否可以修改 Windows 中 Tkinter askopenfilename 对话框的默认行为,以允许用户键入文件路径而不是使用此下拉菜单?例如,

enter image description here

我知道您可以使用“initialdir=”参数指定初始路径/目录,但我也想为用户提供键入/粘贴路径的便利。

最佳答案

使用 import os 你可以允许用户输入路径

import os
def Pathfinding(Select_path):
my_path = Select_path
user_path = os.chdir(my_path)
return user_path

这可以通过使用 Entry 小部件调用函数来添加到 tkinter

关于python - 允许用户在 tkinter askopenfilename() 中键入路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35298070/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com