일부 이미지 파일의 파일 이름이 포함된 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()