这篇文章主要介绍了python如何复制文件夹的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇python如何复制文件夹文章都会有所收获,下面我们一起来看看吧。
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:空间域名、虚拟主机、营销软件、网站建设、吉安网站维护、网站推广。
具体操作方法:
1、首先需要在python脚本中导入os, shutil模块进行文件操作。
import os, shutil
2、再使用copy函数进行文件夹复制操作即可。
shutil.copy(source_file,target_ir) #source_file指源路径, target_ir指目标路径
实例代码:
1、文件夹整体拷贝。
import os
import shutil
source_path = os.path.abspath(r'E:\Projects\source_dir')
target_path = os.path.abspath(r'E:\Projects\new folder\target_dir')
if not os.path.exists(target_path):
# 如果目标路径不存在原文件夹的话就创建
os.makedirs(target_path)
if os.path.exists(source_path):
# 如果目标路径存在原文件夹的话就先删除
shutil.rmtree(target_path)
shutil.copytree(source_path, target_path)
print('copy dir finished!')
2、文件夹下的所有文件拷贝到目标文件夹下。
import os
import shutil
source_path = os.path.abspath(r'E:\Projects\source_dir')
target_path = os.path.abspath(r'E:\Projects\target_dir')
if not os.path.exists(target_path):
os.makedirs(target_path)
if os.path.exists(source_path):
# root 所指的是当前正在遍历的这个文件夹的本身的地址
# dirs 是一个 list,内容是该文件夹中所有的目录的名字(不包括子目录)
# files 同样是 list, 内容是该文件夹中所有的文件(不包括子目录)
for root, dirs, files in os.walk(source_path):
for file in files:
src_file = os.path.join(root, file)
shutil.copy(src_file, target_path)
print(src_file)
print('copy files finished!')
相关函数:
os.remove #删除文件
os.rmdir #删除文件夹
shutil.rmtree #删除目录及其所有内容
关于“python如何复制文件夹”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“python如何复制文件夹”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注创新互联行业资讯频道。
售后响应及时
7×24小时客服热线数据备份
更安全、更高效、更稳定价格公道精准
项目经理精准报价不弄虚作假合作无风险
重合同讲信誉,无效全额退款