디렉토리 삭제
-
[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()) -----------------------------------..