프로그래밍 언어/Python
-
[Python] 파일 복사하기 (shutil.copy)프로그래밍 언어/Python 2021. 3. 8. 14:02
파이썬으로 파일을 복사하는 함수인 shutil.copy 의 사용법을 예제로 알아보려고 합니다. 아래 내용은 파이썬 공식 문서를 참고하여 작성하였습니다. 파이썬 shutil 관련 공식 문서 한국어 공식 문서: docs.python.org/ko/3/library/shutil.html shutil — 고수준 파일 연산 — Python 3.9.2 문서 shutil — 고수준 파일 연산 소스 코드: Lib/shutil.py shutil 모듈은 파일과 파일 모음에 대한 여러 가지 고수준 연산을 제공합니다. 특히, 파일 복사와 삭제를 지원하는 함수가 제공됩니다. 개별 파일 docs.python.org 영어 공식 문서: docs.python.org/3/library/shutil.html shutil — High-lev..
-
[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..