[python] 파일 복사하기
다음은 Python을 사용하여 파일을 복사하는 간단한 예제 코드입니다.
import shutil
source_file = '원본파일경로/파일명.확장자'
destination_folder = '목적지폴더경로/'
shutil.copy(source_file, destination_folder)
위의 예제 코드에서 shutil.copy
함수는 원본 파일을 지정된 폴더로 복사합니다. 이 때, 파일 이름은 동일하게 유지됩니다.
더 많은 옵션을 사용하여 파일을 복사하거나 이동하는 방법에 대해서는 Python 공식 문서를 참조하십시오.
shutil
모듈: https://docs.python.org/3/library/shutil.html- 파일 복사에 관한 자세한 내용: https://docs.python.org/3/library/shutil.html#shutil.copy