copyfile

ALL

Python 파일, 폴더 복사(shutil) 사용 방법 예제

파일을 복사하거나 폴더를 복사하고 싶은 경우가 있습니다. copyfile, copy, copy2 함수를 사용해서 복사가 가능합니다. 하지만 조금씩 차이가 있습니다. 파일 복사 하기 파일을 복사하는 copyfile, copy, copy2 함수는 기본적인 사용방법은 같습니다. import shutil shutil.copyfile("./test1/test1.txt", "./test2.txt") shutil.copy("./test1/test1.txt", "./test3.txt") shutil.copy2("./test1/test1.txt",...