1. 首页
  2. 数据库
  3. 其它
  4. Python利用递归实现文件的复制方法

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

上传者: 2020-12-31 21:57:27上传 PDF文件 36.13KB 热度 21次
如下所示: import os import time from 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) #遍历文件
用户评论