📜  python 复制粘贴文件 - Python 代码示例

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

代码示例2
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)