ダイアログを用いてファイル選択をするプログラムを実行したのですが、ダイアログは出たがfile slectが出ませんでした。エラーは起こってないません
ご指導、ご指摘お願いいたします
import os
import tkinter
from tkinter import messagebox
from tkinter import filedialog
root = tkinter.Tk()
root.title('DATA FITTING')
root.geometry('500x250')
def select_click():
messagebox.showinfo('select','FFITING DATAのExcelファイルを選択してください')
fileType = [('Excelファイル','*.xlsx')] #ファイルタイプをExcelファイルに指定
iniDir = os.path.abspath(os.path.dirname(file)) #初期表示フォルダ
filepath = filedialog.askopenfilename(filetypes=fileType,initialdir = iniDir)
messagebox.showinfo('選択したファイル',filepath)
selectButton = tkinter.Button(root, text='File Select',command=select_click)
selectButton.pack()
回答1件
あなたの回答
tips
プレビュー