「Python」remove関数でファイルを削除する
書式
os.remove(ファイルパス名)
remove関数を利用して、指定ファイルを削除します。
使用例
# coding: utf-8 import os filePath = "C:\\study\\testA.csv" os.remove(filePath)
結果
「testA.csv」を削除します。
Coding Changes the World
書式
os.remove(ファイルパス名)
remove関数を利用して、指定ファイルを削除します。
使用例
# coding: utf-8 import os filePath = "C:\\study\\testA.csv" os.remove(filePath)
結果
「testA.csv」を削除します。