python实现文件的分割与合并
使用Python来进行文件的分割与合并是非常简单的。
python代码如下:
splitFile--将文件分割成大小为chunksize的块;
mergeFile--将众多文件块合并成原来的文件;
#coding=utf-8
importos,sys
reload(sys)
sys.setdefaultencoding('UTF-8')
classFileOperationBase:
def__init__(self,srcpath,despath,chunksize=1024):
self.chunksize=chunksize
self.srcpath=srcpath
self.despath=despath
defsplitFile(self):
'splitthefilesintochunks,andsavethemintodespath'
ifnotos.path.exists(self.despath):
os.mkdir(self.despath)
chunknum=0
inputfile=open(self.srcpath,'rb')#rb读二进制文件
try:
while1:
chunk=inputfile.read(self.chunksize)
ifnotchunk:#文件块是空的
break
chunknum+=1
filename=os.path.join(self.despath,("part--%04d"%chunknum))
fileobj=open(filename,'wb')
fileobj.write(chunk)
exceptIOError:
print"readfileerror\n"
raiseIOError
finally:
inputfile.close()
returnchunknum
defmergeFile(self):
'将src路径下的所有文件块合并,并存储到des路径下。'
ifnotos.path.exists(self.srcpath):
print"srcpathdoesn'texists,youneedasrcpath"
raiseIOError
files=os.listdir(self.srcpath)
withopen(self.despath,'wb')asoutput:
foreachfileinfiles:
filepath=os.path.join(self.srcpath,eachfile)
withopen(filepath,'rb')asinfile:
data=infile.read()
output.write(data)
#a="C:\Users\JustYoung\Desktop\unix报告作业.docx".decode('utf-8')
#test=FileOperationBase(a,"C:\Users\JustYoung\Desktop\SplitFile\est",1024)
#test.splitFile()
#a="C:\Users\JustYoung\Desktop\SplitFile\est"
#test=FileOperationBase(a,"out")
#test.mergeFile()
程序注释部分是使用类的对象的方法。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。