从结尾到开头一次读取一个字节的文件

时间:2013-04-10 18:36:30

标签: python

您好我有兴趣从结尾到开头一次读取一个字节的文件。

这是我到目前为止所做的:

fileName = raw_input()
with open(fileName , "rb") as handler:
    while True:
        piece = handler.read(1)

        if piece =="":
            break
        print piece

如何更改此设置,以便能够从头到尾读取文件中的文件?

2 个答案:

答案 0 :(得分:2)

怎么样?

with open(fileName , "rb") as handler:
    size = handler.seek(0, 2) #2= SEEK_END
    while size > 0:
        size -= 1
        handler.seek(size)
        b = handler.read(1)
        print b

答案 1 :(得分:2)

据我所知,这个问题有两种解决方案。

一方面,你可以使用告诉和寻找功能“

>>> fh = open("e:\\text.txt","rb")
>>> fh.seek(0,2)
>>> length = fh.tell()
>>> for i in range(length, 0, -1):
        fh.seek(i-1,0)
        char = fh.read(1)
        print(char)

另一方面,你可以阅读所有内容(如果文件不是太大),然后从头到尾处理它:

>>> fh = open("e:\\text.txt","rb")
>>> fc = fh.read()
>>> fh.close()
>>> for i in range(len(fc),0,-1):
     print(fc[i-1])