Skip to content

Python:shutil

rmtree

하위 디렉토리 전부를 제거한다.

import shutil

dir_path = '/tmp/img'

try:
    shutil.rmtree(dir_path)
except OSError as e:
    print("Error: %s : %s" % (dir_path, e.strerror))

See also