728x90
디렉토리가 존재할 경우 모든 경로를 지워버리고 새로 만드는 것은 아래와 같이 rmtree 함수를 이용하면 된다.
import os
import shutilif os.path.exists(save_path):
shutil.rmtree(save_path)
os.mkdir(save_path)
'개발' 카테고리의 다른 글
ValueError: could not broadcast input array from shape… 에러 해결 방법 (0) | 2020.06.03 |
---|---|
Python TIP : pillow lib image resize - 이미지 리사이즈, 타입 변경 (0) | 2020.06.03 |
Ubuntu 에서 multifile name 변경 (0) | 2020.06.03 |
YouTube Data Api 사용하기 (0) | 2020.06.03 |
Jenkins pipleline's get date(파이프라인에서 날짜 구하기) (0) | 2020.06.03 |