「python」os.remove()でファイルを削除するサンプル

書式
os.remove(パス名)
使用例

# coding: utf-8
import os

targetPath = "C:\\study\\pleiades-2020-12-java-win-64bit-jre_20201222.zip"

os.remove(targetPath)
print("ファイルを削除しました")

実行結果
>python test.py
ファイルを削除しました

Python

Posted by arkgame