您当前的位置:首页 > 计算机 > 编程开发 > Python

python --windows打开文件选择器

时间:08-15来源:作者:点击数:
CDSY,CDSY.XYZ

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) 取消置顶。

CDSY,CDSY.XYZ
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门
本栏推荐