python批量复制图片到另一个文件夹


Posted in Python onSeptember 17, 2018

本文实例为大家分享了python批量复制图片到文件夹的具体代码,供大家参考,具体内容如下

直接上代码:

# -*- coding: utf-8 -*-
"""
Created on Mon Apr 02 21:03:44 2018
@author: Fsl
"""
import shutil
#这个库复制文件比较省事
 
def objFileName():
 '''
 生成文件名列表
 :return:
 '''
 local_file_name_list = r'G:\KeTi\OCT\ImageSets\Main\test.txt'
 #指定名单
 obj_name_list = []
 for i in open(local_file_name_list,'r'):
  obj_name_list.append(i.replace('\n',''))
 return obj_name_list
 
def copy_img():
 '''
 复制、重命名、粘贴文件
 :return:
 '''
 local_img_name=r'G:\KeTi\OCT\JPEGImages'
 #指定要复制的图片路径
 path = r'G:\KeTi\OCT\data'
 #指定存放图片的目录
 for i in objFileName():
  new_obj_name = i+'.jpg'
  shutil.copy(local_img_name+'/'+new_obj_name,path+'/'+new_obj_name)
 
if __name__ == '__main__':
 copy_img()

就这么多,很简单。

小编再为大家分享python实现图片批量复制或删除的代码,如下

#coding=utf-8
import os
import shutil 
 
#递归复制文件夹内的文件
def copyFiles(sourceDir,targetDir): 
  #忽略某些特定的子文件夹
  if sourceDir.find("exceptionfolder")>0: 
    return 
 
  #列出源目录文件和文件夹
  for file in os.listdir(sourceDir): 
    #拼接完整路径
    sourceFile = os.path.join(sourceDir,file) 
    targetFile = os.path.join(targetDir,file) 
 
    #如果是文件则处理
    if os.path.isfile(sourceFile): 
      #如果目的路径不存在该文件就创建空文件,并保持目录层级结构
      if not os.path.exists(targetDir): 
        os.makedirs(targetDir) 
      #如果目的路径里面不存在某个文件或者存在那个同名文件但是文件有残缺,则复制,否则跳过
      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"
 
    #如果是文件夹则递归
    if os.path.isdir(sourceFile): 
      copyFiles(sourceFile, targetFile)
 
#遍历某个目录及其子目录下所有文件拷贝到某个目录中
def copyFiles2(srcPath,dstPath): 
  if not os.path.exists(srcPath): 
    print "src path not exist!" 
  if not os.path.exists(dstPath): 
    os.makedirs(dstPath) 
  #递归遍历文件夹下的文件,用os.walk函数返回一个三元组
  for root,dirs,files in os.walk(srcPath): 
    for eachfile in files: 
      shutil.copy(os.path.join(root,eachfile),dstPath) 
      print eachfile+" copy succeeded"
 
 
#删除某目录下特定文件
def removeFileInDir(sourceDir):
  for file in os.listdir(sourceDir):
    file=os.path.join(sourceDir,file) #必须拼接完整文件名
    if os.path.isfile(file) and file.find(".jpg")>0:
      os.remove(file)
      print file+" remove succeeded"
 
if __name__ =="__main__": 
  copyFiles("./dir1","./dir2")
  #removeFileInDir("./dir2")
  #copyFiles2("./dir1","./dir2")

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python定时采集摄像头图像上传ftp服务器功能实现
Dec 23 Python
解析Mac OS下部署Pyhton的Django框架项目的过程
May 03 Python
python中使用iterrows()对dataframe进行遍历的实例
Jun 09 Python
Python实现的简单读写csv文件操作示例
Jul 12 Python
浅谈Python中的bs4基础
Oct 21 Python
简单了解python的内存管理机制
Jul 08 Python
python经典趣味24点游戏程序设计
Jul 26 Python
python系列 文件操作的代码
Oct 06 Python
Python序列类型的打包和解包实例
Dec 21 Python
python实现图片,视频人脸识别(dlib版)
Nov 18 Python
如何用python识别滑块验证码中的缺口
Apr 01 Python
写好Python代码的几条重要技巧
May 21 Python
深入浅析Python获取对象信息的函数type()、isinstance()、dir()
Sep 17 #Python
influx+grafana自定义python采集数据和一些坑的总结
Sep 17 #Python
使用 Python 实现简单的 switch/case 语句的方法
Sep 17 #Python
深入理解Python中的 __new__ 和 __init__及区别介绍
Sep 17 #Python
python实现简单http服务器功能
Sep 17 #Python
python实现自动登录
Sep 17 #Python
python发送告警邮件脚本
Sep 17 #Python
You might like
php设计模式 Mediator (中介者模式)
2011/06/26 PHP
如何使用php脚本给html中引用的js和css路径打上版本号
2015/11/18 PHP
使用PHP实现微信摇一摇周边红包
2016/01/04 PHP
PHP+iframe图片上传实现即时刷新效果
2016/11/18 PHP
php检查函数必传参数是否存在的实例详解
2017/08/28 PHP
escape、encodeURI、encodeURIComponent等方法的区别比较
2006/12/27 Javascript
用js实现下载远程文件并保存在本地的脚本
2008/05/06 Javascript
学习ExtJS TextField常用方法
2009/10/07 Javascript
在IE浏览器中resize事件执行多次的解决方法
2011/07/12 Javascript
js对列表中第一个值处理与jsp页面对列表中第一个值处理的区别详解
2013/11/05 Javascript
基于jQuery和CSS3制作响应式水平时间轴附源码下载
2015/12/20 Javascript
详解JavaScript表单验证(E-mail 验证)
2016/03/31 Javascript
Flask中获取小程序Request数据的两种方法
2017/05/12 Javascript
Vue2.x中的Render函数详解
2017/05/30 Javascript
vue axios同步请求解决方案
2017/09/29 Javascript
教你用Cordova打包Vue项目的方法
2017/10/17 Javascript
layui 表格的属性的显示转换方法
2018/08/14 Javascript
浅谈Vue SSR中的Bundle的具有使用
2019/11/21 Javascript
django认证系统实现自定义权限管理的方法
2019/08/28 Python
Python中的单下划线和双下划线使用场景详解
2019/09/09 Python
Pandas聚合运算和分组运算的实现示例
2019/10/17 Python
CSS3 实现飘动的云朵动画
2020/12/01 HTML / CSS
香港太阳眼镜网上商店:SmartBuyGlasses香港
2016/07/22 全球购物
John Varvatos官方网站:设计师男士时装
2017/02/08 全球购物
联想新加坡官方网站:Lenovo Singapore
2017/10/24 全球购物
澳洲的服装老品牌:SABA
2018/02/06 全球购物
个性大学生自我评价
2013/12/04 职场文书
中学家长会邀请函
2014/02/03 职场文书
广告传媒专业应届生求职信
2014/03/01 职场文书
市委召开党的群众路线教育实践活动总结大会报告
2014/10/21 职场文书
小学生禁毒教育心得体会
2016/01/15 职场文书
六年级数学教学反思
2016/02/16 职场文书
生鲜超市—未来中国最具有潜力零售业态
2019/08/02 职场文书
python opencv人脸识别考勤系统的完整源码
2021/04/26 Python
CSS完成视差滚动效果
2021/04/27 HTML / CSS
Vue+TypeScript中处理computed方式
2022/04/02 Vue.js