tkdialogを使ってファイルのpathを取得したいけどうまくいきません
Python3で単語テストアプリケーションを作ろうとしてます。
ボタンを押すとメモ帳までのpathを取得するという処理を実装しようとしているのですが、tkfiledialogをimportすることができないというエラーメッセージが出てきて詰んでしまいました。
発生している問題・エラーメッセージ
Traceback (most recent call last): File "Test.py", line 3, in <module> from tkinter import tkfiledialog ImportError: cannot import name 'tkfiledialog'
該当のソースコード
Python3
1import tkinter 2from tkinter import messagebox 3from tkinter import tkfiledialog 4 5def get_file(): 6 fTyp=[('テキストファイル','*.txt')] 7 iDir = '/home/ユーザ名/Desktop/' 8 #1つのファイルを選択する,pass取得 9 tetileText = 'テストファイルを選択' 10 testfile = tkfiledialog.askopenfilename(filetypes = fTyp, title = titleText, initialdir = iDir) 11 testfilepath = testfile 12 13#ウィンドウを作成 14root = tkinter.Tk() 15root.withdraw() 16root.title("テストツール") 17root.geometry('400x300') 18root.mainloop() 19 20#ボタン、パーツ類 21get_file_Button = tkinter.Button(root, text=u'テストファイルを取得') 22get_file_Button["command"] = get_file 23get_file_Button.pack() 24
試したこと
手の打ちようがなく、何もできませんでした
補足情報(FW/ツールのバージョンなど)
MacBook Air
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/17 09:45