日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

python合并文件_python把多个文件合并到一个新文件

發(fā)布時間:2025/3/19 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python合并文件_python把多个文件合并到一个新文件 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

#!/usr/bin/python

# -*- coding: UTF-8 -*-

import os

import glob

import sys

import re

import datetime

# 設(shè)置編碼

reload(sys)

sys.setdefaultencoding('utf8')

filePath="/home/rfdev/cbh"

#proj1 = "*appStat.log*"

# 默認(rèn)是讀取昨天的日志

today = (datetime.datetime.now()+datetime.timedelta(days=-1)).strftime("%Y%m%d")

todayDb = (datetime.datetime.now()+datetime.timedelta(days=-1)).strftime("%Y-%m-%d")

tomorrowDb = (datetime.datetime.now()).strftime("%Y-%m-%d")

if len(sys.argv) == 2:

today = re.sub("-","",sys.argv[1])

todayDb = sys.argv[1]

tomorrowDb = (datetime.datetime.strptime(todayDb,'%Y-%m-%d')+datetime.timedelta(days=1)).strftime("%Y-%m-%d")

with open(r"/home/rfdev/cbh/test0105.txt.tmp",'w') as file_object:

file_object.truncate()

os.chdir(filePath)

logPattern = "*appStat.log." + todayDb

for logFile in glob.iglob(logPattern):

f = open(logFile,"r")

line=f.readline()

while line:

try:

with open(r"/home/rfdev/cbh/test0105.txt.tmp",'a') as file_object:

file_object.write(line)

except IndexError,e:

print e.message

print line

line=f.readline()

with open(r"/home/rfdev/cbh/test0105_new.txt",'w') as file_object1:

file_object1.truncate()

f1=open('/home/rfdev/cbh/test0105.txt.tmp','r')

lines=f1.readline()

while lines:

if len(lines)<50000:

with open(r"/home/rfdev/cbh/test0105_new.txt",'a') as file_object1:

file_object1.write(lines)

lines=f1.readline()

總結(jié)

以上是生活随笔為你收集整理的python合并文件_python把多个文件合并到一个新文件的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。