ファイルをコピーする

2017/10/29

Python2.7.10

import shutil
src = "test1.txt"
shutil.copyfile(src, "./test2.txt")
shutil.copy(src, "./test3.txt")
shutil.copy2(src, "./test4.txt")

copyfile・・・通常のコピー
copy・・・・・・ファイルのデータとパーミッションをコピー
copy2・・・・・更新日などのメタデータも含めてコピー


コピー完了まで若干のタイムラグがある。