python --windows打开文件选择器
安装
pip install pywin32
实例
import win32ui
dlg = win32ui.CreateFileDialog(1) # 参数 1 表示打开文件对话框
dlg.SetOFNInitialDir('C://') # 设置打开文件对话框中的初始显示目录
dlg.DoModal()
filename = dlg.GetPathName()
print(filename)
方法二:
import tkinter as tk
from tkinter import filedialog
'''打开选择文件夹对话框'''
root = tk.Tk()
root.withdraw()
FolderPath=filedialog.askdirectory() #如果有特殊需要,非要选择文件夹,这个可以去掉注释使用
FilePath=filedialog.askopenfilename() #一般这个直接选择文件,会比较符合人们的使用习惯和软件的用户体验
print('FolderPath:',FolderPath)
print('FilePath:',FilePath)
root.destroy() # 关闭或用进程的队列方法都可行(不写的话和其他主线程程序会报错)
你可以通过设置 Tk 实例的 attributes ,使其在所有窗口的顶层显示。这里有一个例子:
import tkinter as tk
from tkinter import filedialog
root = tk.Tk()
root.withdraw() # 隐藏主窗口
# 让文件选择器窗口始终在顶层
root.attributes('-topmost', 1)
directory = filedialog.askdirectory() # 打开目录选择器
print(directory)
root.destroy()
root.attributes('-topmost', 0) # 取消窗口置顶
root.attributes('-topmost', 1) 这行代码将主窗口始终显示在最前面。然后在用户选择完路径后,使用 root.attributes('-topmost', 0) 取消置顶。