>백엔드 개발 >파이썬 튜토리얼 >Python 배치 복사 파일

Python 배치 복사 파일

巴扎黑
巴扎黑원래의
2016-12-08 09:34:301308검색

일부 이미지 파일의 파일 이름이 포함된 Excel이 데이터베이스에서 내보내집니다. 해당 파일은 서버에서 다운로드해야 합니다. 프로그램은 이미지에 대한 일괄 내보내기 기능을 제공하지 않습니다. 이는 단지 임시 데이터 통계일 뿐입니다. .파일 내보내기에서 해당 파일을 수동으로 다운로드해야 합니다.

1. 엑셀의 파일명 열을 복사하여 빈 텍스트 파일에 붙여넣고 이름을 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()


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.