BIG
파일선택창을 출력하여 파일경로 가져오기 샘플코드
H/W : apple M1 macbook Air
IDE : Pycharm
import tkinter as tk
from tkinter import filedialog
root = tk.Tk()
root.withdraw()
file_path = filedialog.askopenfilename()
print("선택된 파일 경로:" + file_path)
LIST
'!!...Python > !!...PythonStudy' 카테고리의 다른 글
[python]Sample Code: Get Directory Path Using Select File Dialog (0) | 2022.09.29 |
---|---|
[python]SampleCode: read text file line by line use while (0) | 2022.09.28 |
[python]SampleCode: text file read (0) | 2022.09.24 |
[python]SampleCode:get string length in python (0) | 2022.09.24 |
[python] MariaDB ( mySql ) connection sample (0) | 2022.07.22 |