-
[Python] Directory make and remove with subdirectories. (하위 디렉토리 포함 생성과 삭제)Python/Python Programming 2019. 10. 18. 10:57
makedirs : 하위 디렉토리를 포함하여 생성
removedirs : 하위 디렉토리를 포함하여 삭제. (파일이 존재하면 [WinError 145] 에러 발생)
from os import makedirs from os import removedirs from os.path import isdir dirname = 'test/test' def dircheck(): res = 'Directory Exist' if isdir(dir) else 'Directory Not Exist' return res makedirs(dirname) # make with subdirectories print(dircheck()) removedirs(dirname) # remove with subdirectories print(dircheck()) --------------------------------------------------------------------- Directory Exist Directory Not Exist
'Python > Python Programming' 카테고리의 다른 글
[Python] dateutil 모듈을 이용한 전년,전월,전일,D-day 날짜 구하기 (0) 2019.10.21 [Python] Find all index values of a specific element using enumerate. (enumerate를 활용한 특정요소의 리스트 index 값 모두 찾기) (0) 2019.10.20 [Python] Windows OS Disk Usage Check. (윈도우 운영체제 디스크 사용량 체크) (0) 2019.10.18 [Python] Extract directory and filename. (디렉토리와 파일명 추출하기) (0) 2019.10.18 [Python] Directory make and remove. (디렉토리 생성과 삭제) (0) 2019.10.18 [Python] index 함수 - 배열에서 원하는 값의 위치 찾기 (0) 2019.10.16 [Python] isalnum 문자열에 숫자 또는 알파벳만 있는지 확인하는 메소드 (0) 2019.10.15 [Python] isdigit - Decide if only numbers exist. (문자열에 숫자만 있는지 확인하는 메소드) (0) 2019.10.15