使用 Windows 资源管理器获取 python 中文件的路径

Use Windows explorer to get the path to a file in python

我会怎样 1. 访问 windows 资源管理器 2. 用它来获取文件的路径。例如,当我单击 "open" 时,它会将所选文件的地址粘贴到输入框

如果有帮助,我正在使用 tkinter。 提前致谢。

使用 from tkinter import filedialog (3.x) 或 import FileDialog as filedialog (2.x) 等语句导入 tkinter.filedialog。 CPython 文档中以及我所知的其他任何地方都没有正确记录此模块,因此请阅读代码以确定要使用的 ask... 方法。在3.x中,代码是Lib/tkinter/filedialog.py。在 2.x、Lib/libtk/FileDialog.py.

编辑:根据您所说的,您可能想要 askopenfilenameaskopenfilenames。我相信这些 return 名称无需打开文件。没有 name 的函数实际打开文件。