python实例之批量复制文件

发布时间:2020-08-30编辑:脚本学堂
本文介绍了python实现批量复制文件的方法,分享一个python批量复制文件的小例子,需要的朋友参考下。

数据库导出excel,其中包含了一些图片文件的文件名,需把对应文件要从服务器上下载,程序未提供图片批量导出功能,只是临时数据统计,需要手动把对应excel里的文件导出。

1、把excel里文件名那一列复制,粘进一个空白的文本文件,命名为filelist.txt,上传到服务器。

2、在服务器上使用脚本导出,python/ target=_blank class=infotextkey>python脚本 fileCp.py 。
 

复制代码 代码示例:
#! python 
#coding:utf-8 
 
##!/usr/bin/python 
# Filename : fileCp.py 
import sys 
import os   
import shutil  
 
fileList='filelist.txt' 
targetDir='files' 
 
filedir = open(fileList) 
line = filedir.readline() 
log = open('running.log','w') 
while line: 
        line = line.strip('n'); 
        basename =  os.path.basename(line) 
        exists = os.path.exists(line) 
        if exists : 
            print 'copy '+line+' to '+os.getcwd()+'/'+targetDir+'/'+basename 
            log.write('copy '+line+' to '+os.getcwd()+'/'+targetDir+'/'+basename+'rn') 
            shutil.copy(line,targetDir+'/'+basename) 
        else: 
            print line+' not exists' 
            log.write(line+' not exists'+'rn') 
        line = filedir.readline() 
log.close() 

执行:
 

复制代码 代码示例:
python fileCp.py