[問題] 新手請教 寫入CSV檔的問題[已解決]

作者: davic (無所事事的人)   2020-09-15 10:49:39
大家好,
最近想自己寫一個把特定目錄下所有DOC/DOCX的文件找出來然後
把路徑跟檔名寫入csv的小程式
但在寫入CSV的部份就遇到了問題~~
想請問我那邊錯了?
以下是我的code
import os
import csv
##此段是測試有沒有抓到DOC/DOCX的
for file in os.listdir("E:\src"):
if file.endswith(".doc") or file.endswith(".docx"):
print(os.path.join("E:\src", file))
##下面是要寫入CSV的部份
with open('FileSearchList.csv', 'w', newline = '', encoding = 'UTF-8') as
csvfile:
writer = csv.writer(csvfile)
writer.writerow = (['os.path.join("E:\src", file'])
上面這段程式執行完後,
輸出的結果是_csv.writer object attribute 'writerow' is read-only
可以請版上的大家指導一下或是給我個修改的方向嗎?
謝謝
作者: annheilong (方格子)   2020-09-15 11:25:00
他的錯誤的意思是writerow這個成員是唯讀的 不能給值
作者: moodoa3583 (金牌台灣啤酒)   2020-09-15 12:11:00
把 writerow 後面的 = 刪掉可以寫成:with open('FileSearchList.csv', 'w', newline = '',encoding = 'UTF-8') as csvfile:writer = csv.writer(csvfile)for file in os.listdir(r"E:\src"):if file.endswith(".doc") or file.endswith(".docx"):path = (os.path.join("E:\src", file))writer.writerow([path])print(path)
作者: davic (無所事事的人)   2020-09-15 12:20:00
謝謝, 已解決了~~謝謝ANN 跟MOO 兩位的回覆我是後來改成writer.writerows(list), 就OK了~~

Links booklink

Contact Us: admin [ a t ] ucptt.com