python文件讀取編碼筆記

import os pathloc = 'C:\\Users\\lw\\Desktop\\課件' try: with open("log_logo", "w+", encoding="utf-8") as f: for root, dirs, files in os.walk(pathloc, topdown=False): # print('root:',root) # print('dirs:',dirs) # print('files:',files) tmpdir = root for filename in files: if filename.endswith("java"): filepath = os.path.join(tmpdir, filename) #需要拼接路徑 try: with open(filepath, 'r', encoding="gbk")as f1: # with open(filepath, 'r', encoding="utf-8")as f1: s = f1.read() # print(s) f.write(s) except: with open(filepath, 'r', encoding="UTF-8")as f1: # with open(filepath, 'r', encoding="utf-8")as f1: s = f1.read() # print(s) f.write(s) except: pass
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章