Python 파일 열기 다이얼로그
파이썬에서 파일 오픈 다이얼로그이다. OpenFileDialog와 비슷하다. 기본적으로 tkinter이므로 tk창이 뜬다. askopenfilename은 파일 이름만 얻고 실제로 파일을 열려면 두번째 예제 소스를 이용한다. import tkFileDialog file = tkFileDialog.askopenfilename() print "Selected File:",file import tkFileDialog file = tkFileDialog.askopenfile(parent=root,mode='rb',title='Choose a file') if file != None: data = file.read() file.close()
프로그래밍
2017. 2. 3. 13:23
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday