투케이2K

109. (python/파이썬) [Mac Os] : [문법] : shutil.copy 사용해 파일 복사 수행 실시 본문

Python

109. (python/파이썬) [Mac Os] : [문법] : shutil.copy 사용해 파일 복사 수행 실시

투케이2K 2024. 5. 11. 18:29

[개발 환경 설정]

개발 툴 : VsCode

개발 언어 : python

 

[사전) 설정 사항]

 
 

[소스 코드]

 

# --------------------------------------------------------------
# [import]
# --------------------------------------------------------------
import shutil
# --------------------------------------------------------------



# --------------------------------------------------------------
# [요약 설명]
# --------------------------------------------------------------
# 1. import shutil 은 파이썬에서 파일을 복사(copy)하거나 이동(move)할 때 사용하는 모듈입니다
# --------------------------------------------------------------
# 2. shutil.copy(원본 파일, 복사 파일) : 복사할 파일 문법 입니다
# --------------------------------------------------------------
# 3. shutil.move(원본 경로, 이동 경로) : 이동할 파일 문법 입니다
# --------------------------------------------------------------



# --------------------------------------------------------------
# [class start]
# --------------------------------------------------------------



# --------------------------------------------------------------
# [main start]
# --------------------------------------------------------------


# [copy 사용해 파일 복사 수행 실시]
shutil.copy('test.txt', 'test2.txt')


# [move 사용해 파일 이동 수행 실시]
# shutil.copy('test.txt', '/testFolder/test2.txt')


# [로그 출력 수행]
print("")
print("----------------------------------------")
print("shutil.copy :: success")
print("----------------------------------------")
print("")


# --------------------------------------------------------------
# [main end]
# --------------------------------------------------------------



# --------------------------------------------------------------
# [class end]
# --------------------------------------------------------------
 

[결과 출력]

 

 

반응형
Comments