Python [python] ディレクトリを中身ごと削除
ディレクトリを下の階層のファイルやディレクトリを含めて消す場合は、
shutilモジュールのrmtreeメソッドでできます。
import shutil
shutil.rmtree('ディレクトリのパス')
ディレクトリのパスを指定す...
Python
Python
Python
Python
Python