[Python] 中文路徑和中文文字檔亂碼問題

來源:互聯網
上載者:User

標籤:

情景:

Python首先讀取名為log.txt的文字檔, 其中包含有檔案名稱相對路徑資訊filename.

隨後Python調用shutil.copy2(src, dst)對該filename檔案進行複製操作.

由於filename為相對路徑資訊, 所以我們需要寫入程式碼寫入父目錄, 假設為"C:\\來源目錄\\", 同時還有目標目錄資訊, 假設為"C:\\目標目錄\\".

代碼:

import shutildef get_file_list(src):    f = open(src, ‘r‘)    data = []    for line in f.readlines():        if len(line) > 2:            line = line.replace(‘\n‘,‘‘)            line = line.replace(‘\r‘,‘‘)            data.append(line.decode(‘utf8‘))    return datadef copy_file_to(ls, src, dst):    for f in ls:        shutil.copy(src + f, dst + f)        if __name__ == ‘__main__‘:    ls = get_file_list(u"log.txt")    copy_file_to(ls, u"C:\\來源目錄\\", u"C:\\目標目錄\\")

 

問題:

會出現各種編碼出錯, 亂碼.

分析:

情境中, 有兩個編碼:

1. log.txt的編碼

2. python指令檔的編碼.

如果這兩個編碼不匹配, 就會出現問題.

 

解決方案:

使用Notepad++將兩個檔案的編碼都改為utf-8 No BOM即可.

[Python] 中文路徑和中文文字檔亂碼問題

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.