tkinter打开文件、保存文件对话框

import tkinter as tk
from tkinter import filedialog

#选择文件夹 返回文件夹路径
folderPath = filedialog.askdirectory()

#选择文件  返回文件路径
filePath = filedialog.askopenfilename() #只能选择单个文件
filePath = filedialog.askopenfilenames() #可以选择多个文件

#选择文件 返回文件对象
file = filedialog.askopenfile() #只能选择单个文件
file = filedialog.askopenfiles() #可以选多个文件

#保存文件 返回保存文件路径
fileSave = filedialog.asksaveasfilename(filetypes = [("Python files",".xlsx")])

#保存文件 返回保存文件对象
fileSave = filedialog.asksaveasfile(mode = "w",extension = ".py")

 

tkinter打开文件、保存文件对话框

上一篇:Cobbler自动部署装机 轻松解决装机烦恼


下一篇:centos 8.3安装 一键安装部署gitlab