python 批次複製文件

巴扎黑
發布: 2016-12-08 09:34:30
原創
1255 人瀏覽過

資料庫裡導出了一個excel,裡麵包含了一些圖片檔案的檔名,需把對應檔案要從伺服器上下載,程式未提供圖片批次匯出功能,只是臨時資料統計,需要手動把對應excel裡的檔案匯出。 

1、把excel里文件名那一列複製,貼進空白的文字文件,命名為filelist.txt,上傳到伺服器。 

2、在伺服器上使用腳本匯出,python腳本: 

#! 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+'\r\n')
shutil.copy(line,targetDir+'/'+basename)
else:
print line+' not exists'
log.write(line+' not exists'+'\r\n')
line = filedir.readline()
log.close()
登入後複製


相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板