-
[Python] Directory make and remove. (디렉토리 생성과 삭제)Python/Python Programming 2019. 10. 18. 10:39
mkdir : 디렉토리를 생성. (하위 디렉토리까지는 생성이 않된다)
rmdir : 디렉토리를 삭제. (하위 디렉토리가 존재하면 [WinError 145] 에러 발생)
from os import mkdir from os import rmdir from os.path import isdir dirname = 'test' def dircheck(): res = 'Directory Exist' if isdir(dir) else 'Directory Not Exist' return res mkdir(dirname) # create dir print(dircheck()) rmdir(dirname) # remove dir print(dircheck()) --------------------------------------------------------------------- Directory Exist Directory Not Exist
'Python > Python Programming' 카테고리의 다른 글
[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 with subdirectories. (하위 디렉토리 포함 생성과 삭제) (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 [Python] 2개의 리스트의 요소들을 합쳐서 딕셔너리 타입으로 변환 (0) 2019.10.14