1. os.mkdir("file1")
: 현재 위치의 경로에서 "file1" 생성
import os
os.mkdir("file1")
2. os.makedirs("dir1/dir2/dir3/file1", exist_ok=True)
- 지정한 경로 내 모든 (하위) 디렉토리 생성
- "exist_ok" : 모든 경로가 존재할 경우 에러 발생 FileExistError
import os
os.makedirs("dir1/dir2/dir3/file1", exist\_ok=True)
'Engineering > 파이썬(Python)' 카테고리의 다른 글
[Python] 파이썬 파일, 경로 복사 shutil.copyfile, copy, copy2, copytree (0) | 2023.01.19 |
---|---|
[Python] 파이썬 경로 제외한 파일명 반환 - os.path.basename(path) (0) | 2023.01.17 |
댓글