码迷,mamicode.com
首页 > 其他好文 > 详细

大文件不断行分割

时间:2014-05-22 09:07:43      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:blog   class   c   code   a   int   

#! /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

大文件不断行分割

标签:blog   class   c   code   a   int   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!