首页 > 其他 > 详细

大文件不断行分割

时间:2014-05-22 09:07:25      阅读:229      评论:0      收藏:0      [点我收藏+]
#! /usr/bin/python
#! -*- coding:utf-8 -*-
import os
def SplitFile(cnt):
  path=‘e:\data‘
  filename=path+‘\\qunti_deal.txt‘
  os.chdir(path)
  i=0
  n=0
  size=os.path.getsize(filename)/1024/cnt
  print size
  temp = open(filename+‘.part‘+str(i),‘w‘)
  f=open(filename,‘r‘)
  while True:
    buf = f.read(1024)
    if buf==‘‘:
      print filename+‘.part‘+str(i)+‘;‘
      temp.close()
      f.close()
      return
    n+=1
    if n==size:
      t=buf.rfind(‘\n‘)+1
      temp.write(buf[:t])
      n=0
      print filename+‘.part‘+str(i)+‘;‘
      i+=1
      temp.close()
      temp=open(filename+‘.part‘+str(i),‘w‘)
      temp.write(buf[t:])
      continue
    temp.write(buf)
if __name__==‘__main__‘:
	SplitFile(int(raw_input(‘#files:‘)))

大文件不断行分割,布布扣,bubuko.com

大文件不断行分割

原文:http://blog.csdn.net/cklsoft/article/details/26165159

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!