1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

tkinterで簡単なファイル選択アプリケーション

Last updated at Posted at 2020-06-04

#tkinterで簡単なファイル選択アプリケーション

##選択したファイルをタプル形式で返します.

FileChoice.py
import os
from tkinter import Tk
from tkinter import StringVar
from tkinter import LEFT
from tkinter import ttk
from tkinter import filedialog
from tkinter import messagebox

def App():
    # 参照ボタンのイベント
    # button1クリック時の処理
    def button1_clicked():
        fTyp = [("",".csv")]
        iDir = os.path.abspath(os.getcwd())
        filepath = filedialog.askopenfilenames(filetypes = fTyp,initialdir = iDir)
        file1.set(filepath)

    # button2クリック時の処理
    def button2_clicked():
        messagebox.showinfo('FileReference Tool', u'Reference Files ↓↓\n' + file1.get())
        print(file1.get())
    #Exit時の処理
    def on_closing():
        if messagebox.askokcancel("Quit", "Do you want to quit?"):
            root.destroy()

    # rootの作成
    root = Tk()
    root.title('FileReference Tool')
    root.resizable(False, False)

    # Frame1の作成
    frame1 = ttk.Frame(root, padding=10)
    frame1.grid()

    # 参照ボタンの作成
    button1 = ttk.Button(root, text=u'Reference', command=button1_clicked)
    button1.grid(row=0, column=3)

    # ラベルの作成
    # 「ファイル」ラベルの作成
    s = StringVar()
    s.set('ファイル>>')
    label1 = ttk.Label(frame1, textvariable=s)
    label1.grid(row=0, column=0)

    # 参照ファイルパス表示ラベルの作成
    file1 = StringVar()
    file1_entry = ttk.Entry(frame1, textvariable=file1, width=50)
    file1_entry.grid(row=0, column=2)

    # Frame2の作成
    frame2 = ttk.Frame(root, padding=(0,5))
    frame2.grid(row=1)

    # 参照確認の作成
    button2 = ttk.Button(frame2, text='Check', command=button2_clicked)
    button2.pack(side=LEFT)

    # Exitボタンの作成
    button3 = ttk.Button(frame2, text='Exit', command=on_closing)
    button3.pack(side=LEFT)
    #return file1
    
    root.mainloop()

    return eval(file1.get())
Running
fileparh = App()

image.png
Reference ---エクスプローラーを開きファイルを選択します
Check--------Referenceで選択したファイルを確認します
Exit---------アプリケーションを閉じます

Running
print(filepath)
# 結果)選択したファイルがタプル形式で返されます

もっとクールで早くなる書き方があったら訂正するのでご指摘ください!

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?