Notice
Recent Posts
Recent Comments
Tags
- 바코드 스캔하기
- asp.net Select
- 하드 윈도우 복사
- javascript 바코드스캔
- 파일업로드 체크
- 바코드 생성하기
- django 엑셀불러오기
- jquery 바코드생성
- XSS PHP
- 말줄임표시
- php 캐쉬제거
- 404에러페이지
- asp.net dropdownlist
- asp.net core Select
- Mac Oracle
- 맥 오라클설치
- TempData
- 강제이동
- ASP.Net Core 404
- jquery 바코드
- XSS방어
- 하드 마이그레이션
- javascript redirection
- ViewBag
- javascript 바코드 생성
- 파일업로드 유효성체크
- ViewData
- 타임피커
- javascript 유효성체크
- SSD 복사
웹개발자의 기지개
[python] tkinter - 메뉴와 대화상자2 - 파일저장 본문
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
from tkinter import *
from tkinter.filedialog import *
window = Tk()
window.geometry("400x100")
label1 = Label(window,text="선택된 파일 이름")
label1.pack()
# mode="w" 파일쓰기 모드, 대화상자에서 원하는 파일을 선택하고 저장한다.
saveFile = asksaveasfile(parent = window,mode="w",defaultextension=".jpg",filetypes=(("JPG파일","*.jpg;*.jpeg"),("모든 파일","*.*")))
# label1 의 text값 saveFile 으로 변경
label1.configure(text=saveFile)
saveFile.close()
window.mainloop()
|
cs |
'python' 카테고리의 다른 글
[python] tkinter - 메뉴와 대화상자3 - 이미지파일 선택[2] (0) | 2021.03.28 |
---|---|
[python] tkinter - 메뉴와 대화상자3 - 이미지파일 선택[1] (0) | 2021.03.28 |
[python] tkinter - 메뉴와 대화상자1 - 파일선택 (0) | 2021.03.28 |
[python] tkinter - 이벤트 처리2 - 마우스 이벤트 (0) | 2021.03.28 |
[python] tkinter - 이벤트 처리1 - 키보드 이벤트 (0) | 2021.03.28 |
Comments