1. 程式人生 > >Python easyGUI 檔案瀏覽 顯示檔案內容

Python easyGUI 檔案瀏覽 顯示檔案內容

 1 #提供一個檔案瀏覽夾。讓使用者選擇需要開啟的檔案,開啟並顯示檔案內容:
 2 
 3 import easygui as g
 4 import os
 5 msg='瀏覽檔案並開啟'
 6 title='測試'
 7 default='D:\Python練習\*'
 8 fileType='全部檔案'
 9 filePath=g.fileopenbox(msg,title,default,fileType)
10 #此處根據實際情況,進行字元編碼設計
11 with open(filePath,encoding='utf-8', errors='ignore') as f:
12     title=os.path.basename(filePath)
13 msg='檔案%s的內容如下:'%title 14 txt=f.read() 15 g.textbox(title,msg,txt)
本文轉載:http://www.cnblogs.com/scios/p/8386635.html