python实现分割文件

python实现分割文件我们有时候需要对大文件进行分割,从而就可以在记事本等软件中打开以便好做处理,现在使用Python实现一个文件分割的功能,可以按照指定的大小分割文件为一系列子文件。见代码:#!/usr/bin/python#-*-coding:utf-8-*-importosdefsplit_file(filename,size): fp=open(filename,’rb’)

我们有时候需要对大文件进行分割,从而就可以在记事本等软件中打开以便好做处理,现在使用Python实现一个文件分割的功能,可以按照指定的大小分割文件为一系列子文件。

见代码:

#!/usr/bin/python
# -*- coding: utf-8 -*-

import os

def split_file(filename,size):
	fp=open(filename,'rb')
	i=0
	n=0
	dir_put='split_dir/'
	if os.path.isdir(dir_put):
		pass
	else:
		os.mkdir(dir_put)
	filename_front=os.path.splitext(filename)[0]   #取到除去扩展名的文件名
	temp=open(dir_put+filename_front+'.part'+str(i)+'.txt','wb')
	buf=fp.read(1024)
	while 1:
		temp.write(buf)
		buf=fp.read(1024)
		if buf=='':
			print filename_front+'.part'+str(i)+'.txt'
			temp.close()
			fp.close()
			return
		n+=1
		if n==size:
			n=0
			print filename_front+'.part'+str(i)+'.txt'
			i+=1
			temp.close()
			temp=open(dir_put+filename_front+'.part'+str(i)+'.txt','wb')
	fp.close()

if __name__=='__main__':
	filename=raw_input("enter filename:")
	size=int(raw_input("enter size:"))   #注意转换为int,否则无效
	split_file(filename,size)  #第二个参数的单位是k

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/13023.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注