📌  相关文章
📜  将目录从一个位置复制到另一个 python 代码示例

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

代码示例2
# Source path 
src = 'C:/Users / Rajnish / Desktop / GeeksforGeeks / source'
   
# Destination path 
dest = 'C:/Users / Rajnish / Desktop / GeeksforGeeks / destination'
   
# Copy the content of 
# source to destination 
destination = shutil.copytree(src, dest)