用python分割TXT文件成4K的TXT文件

    ipod虽然很酷,但它的电子书功能却弱到了家,只支持看不到4K的txt格式,于是我只好用python写了个工具,来拆分我的txt文件,源码如下:

 

 

##########################

#                                                            #

# 为了避免截断中文字符                             #

# 文件要求是 unicode 编码                        #

# txt文件另存为对话框下面有下拉框,可选存 #

# 储编码格式                                            #

#                                                            #
##########################


import os
import struct
filename = str(raw_input("Please enter an old file name: "))
filenamepre = str(raw_input("Please enter an new file name prefix: "))
count = 0
filecount = 0
maxcount = 20
newfilename = repr(filecount) + '.txt'
oldfile = open(filename,'rb')
bFirst = True
while True:
    s = oldfile.read(512*8 - 4)
    if not s:
        exit()
    filecount = filecount + 1
    newfilename = filenamepre + repr(filecount).zfill(2) + '.txt'
    newfile = open(newfilename,'wb')
    if not bFirst:
        be = 0XFEFF
        newfile.write(struct.pack('H',be))
    newfile.write(s)
    be = 0X000A000D
    newfile.write(struct.pack('I',be))
    newfile.close()
    bFirst = False
oldfile.close()
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值