时间:2021-05-22
之前用来整理图片的小程序,拿来备忘,算是使用Python复制文件的一个例子。
# -*- coding: utf-8 -*-#程序用来拷贝文件并输出图片采集日期等其他信息到Excel中#文件夹结构:#2016_07_07# -Data_07_07_001# -Random1# -image001_co.pgm# -image001_c1.pgm# -image002_co.pgm# -image002_c1.pgm# -……# -Random2# -……# -Data_07_07_002# -Data_07_07_003# -……#所以我们只是拷贝每个子文件夹中,Random1文件夹中的_co.pgm数据 import osimport reimport xlwt hang=0#递归复制文件夹内的文件def copyFiles(sourceDir,targetDir): global hang #全局变量,记录即将写入Excel的行号 worksheet.write(hang, 0, label = sourceDir) for file in os.listdir(sourceDir): frames = '('+file[file.find('_')+1:]+')' #待写入Excel中的数据 sourceDir1 = os.path.join(sourceDir,file) #路径名拼接 targetDir1 = os.path.join(targetDir,file) for file in os.listdir(sourceDir1): sourceDir2 = os.path.join(sourceDir1,file) #忽略某些特定的子文件夹 if sourceDir2.find("Random1")>0: #列出源目录文件和文件夹 count= -1 for file in os.listdir(sourceDir2): #拼接完整路径 if re.search('_c0.pgm',file): count+=1 sourceFile = os.path.join(sourceDir2,file) targetFile = os.path.join(targetDir1,file) if os.path.isfile(sourceFile): if not os.path.exists(targetDir1): os.makedirs(targetDir1) if not os.path.exists(targetFile) or (os.path.exists(targetFile) and (os.path.getsize(targetFile) != os.path.getsize(sourceFile))): open(targetFile, "wb").write(open(sourceFile, "rb").read()) print targetFile+" copy succeeded" frames = '0-'+str(count)+frames worksheet.write(hang, 1, label = 1) worksheet.write(hang, 2, label = frames) hang+=1 print frames workbook = xlwt.Workbook()worksheet = workbook.add_sheet('My Worksheet')copyFiles("F:/2016_07_07","F:/07_07")workbook.save('auto_book.xls')print 'end'以上这篇使用Python实现从各个子文件夹中复制指定文件的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
系统ubuntu20.04工具python要求文件夹中有22个子文件夹,每个子文件又包含56个文件,要求将每个子文件夹中的第一个文件放到一个新文件夹中,第二个放
方法一:使用收藏文件复制方法直接复制收藏夹收藏夹位于C:\documentsandsettings\%username%\favorites文件夹中,将此文件夹
移动是指将所选文件或文件夹移动到指定位置,而复制是指为所选文件或文件夹创建副本。下面小编就來介绍移动和复制文件或文件夹的方法。1.使用任务窗格步骤1:在wind
前言经常需要检查一个“目录或文件夹”内部有没有我们想要的文件或者文件夹,就需要我们循环迭代出所有文件和子文件夹,Python中遍历指定目录下所有的文件和文件夹,
该代码主要是基于python实现判断指定文件夹下是否存在指定后缀的文件。代码如下:importosYour_Dir='你的文件夹/'Files=os.listd