Directory
-
[Python] 디렉토리 만들기 (os.mkdir)프로그래밍 언어/Python 2021. 3. 8. 13:42
파이썬으로 디렉토리를 만드는 함수인 os.mkdir의 사용법을 예제로 알아보려고 합니다. 아래 내용은 파이썬 공식 문서를 참고하여 작성하였습니다. 파이썬 file, directory 관련 공식 문서 한국어 공식 문서: docs.python.org/ko/3/library/filesys.html 파일과 디렉터리 액세스 — Python 3.9.2 문서 docs.python.org 영어 공식 문서: docs.python.org/3/library/os.html#os-file-dir os — Miscellaneous operating system interfaces — Python 3.9.2 documentation os — Miscellaneous operating system interfaces Source c..