Python の shutil モジュールを使ってみる
Python
Published: 2019-09-17

やったこと

shutil モジュールを使ってみます。

確認環境

$ python
Python 3.6.2 |Anaconda custom (64-bit)| (default, Sep 21 2017, 18:29:43)
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

調査

shutil モジュールはファイルやファイルの集まりに対する高水準の操作方法を多数提供します。

hoge ディレクトリがあるとします。

>>> import shutil
>>> shutil.rmtree('hoge')
>>> exit()

参考