본문 바로가기
Python

[python] 해당 폴더의 하위까지 모두 삭제하는 방법

by bryan.oh 2020. 2. 12.
반응형

Remove directory recursive

 

pip로 install 안해도 되는듯.

import shutil
shutil.rmtree('/path/to/dir/')

아래의 폴더가 있다고 했을 때, 다 지워집니다.

/path/to/dir/chapter01
/path/to/dir/chapter02
/path/to/dir/chapter02/001/
/path/to/dir/chapter02/002/
/path/to/dir/chapter02/003/

 

이게 가장 간단한듯.

728x90
반응형

댓글