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

import tkinter as tk
from tkinter import filedialog

#只想显示对话框,添加这两行代码
root = tk.Tk()
root.withdraw()

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

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

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

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

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

评论