📜  在 python3 中复制文件 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:11.914000             🧑  作者: Mango

代码示例1
import shutil

original = r'original path where the file is currently stored\file name.file extension'
target = r'target path where the file will be copied\file name.file extension'

shutil.copyfile(original, target)