大家好,
最近想自己寫一個把特定目錄下所有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
可以請版上的大家指導一下或是給我個修改的方向嗎?
謝謝