📜  python 传输文件 - Python 代码示例

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

代码示例1
import shutil

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

shutil.copyfile(original, target)