香港云主机最佳企业级服务商!

ADSL拨号VPS包含了中国大陆(联通,移动,电信,)

中国香港,国外拨号VPS。

当前位置:云主机 > python >

电信ADSL拨号VPS
联通ADSL拨号VPS
移动ADSL拨号VPS

Python利用递归实现文件的复制方法


时间:2022-02-08 17:48 作者:admin


如下所示:

import osimport timefrom collections import deque"""利用递归实现目录的遍历@para sourcePath:原文件目录@para targetPath:目标文件目录"""def getDirAndCopyFile(sourcePath,targetPath):  if not os.path.exists(sourcePath):    return  if not os.path.exists(targetPath):    os.makedirs(targetPath)      #遍历文件夹  for fileName in os.listdir(sourcePath):    #拼接原文件或者文件夹的绝对路径    absourcePath = os.path.join(sourcePath, fileName)    #拼接目标文件或者文件加的绝对路径    abstargetPath = os.path.join(targetPath, fileName)    #判断原文件的绝对路径是目录还是文件    if os.path.isdir(absourcePath):      #是目录就创建相应的目标目录      os.makedirs(abstargetPath)      #递归调用getDirAndCopyFile()函数      getDirAndCopyFile(absourcePath,abstargetPath)    #是文件就进行复制    if os.path.isfile(absourcePath):      rbf = open(absourcePath,"rb")      wbf = open(abstargetPath,"wb")      while True:        content = rbf.readline(1024*1024)        if len(content)==0:          break        wbf.write(content)        wbf.flush()      rbf.close()      wbf.close()if __name__ == '__main__':  startTime = time.clock()  sourcePath = r"H:\培训资料"  targetPath = r"H:\培训资料_备份"  getDirAndCopyFile(sourcePath,targetPath)  #时间是用来计算复制总共消耗了多少时间  endTime = time.clock()  time_mi = endTime // 60  time_s = endTime // 1 % 60  time_ms = ((endTime * 100) // 1) % 100  print("总用时:%02.0f:%02.0f:%2.0f" % (time_mi, time_s, time_ms))

以上这篇python/' target='_blank'>python利用递归实现文件的复制方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

(责任编辑:admin)






帮助中心
会员注册
找回密码
新闻中心
快捷通道
域名登录面板
虚机登录面板
云主机登录面板
关于我们
关于我们
联系我们
联系方式

售前咨询:17830004266(重庆移动)

企业QQ:383546523

《中华人民共和国工业和信息化部》 编号:ICP备00012341号

Copyright © 2002 -2018 香港云主机 版权所有
声明:香港云主机品牌标志、品牌吉祥物均已注册商标,版权所有,窃用必究

云官方微信

在线客服

  • 企业QQ: 点击这里给我发消息
  • 技术支持:383546523

  • 公司总台电话:17830004266(重庆移动)
  • 售前咨询热线:17830004266(重庆移动)