1. 程式人生 > >python 刪除指定路徑下的csv檔案

python 刪除指定路徑下的csv檔案

話不多說,先上程式碼:

pwd = os.getcwd()  # 獲得當前工作目錄
filePath = 'C:\Users\Administrator\Desktop\Course comments\Number\\' + category
# 得到該分類的所有課程
file_course_list = os.listdir(filePath)
#    print len(file_course_list)
# 去掉.csv字尾
courses_name = [file_course.split('.')[0] for file_course in file_course_list]
for 
course_name in courses_name: if course_name not in clean_course: clean_course.append(course_name)
#刪除指定路徑的csv檔案
        name = os.path.join(course_name+'.csv')
        os.remove(os.path.join(filePath,name))
        print name