Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
289 views
in Technique[技术] by (71.8m points)

python - Continue reading file from the position where it was left

I have to read a file multiple times in which some error info is appended everyday. Is there a way to start reading the file from the point it was left previous day instead of start reading from beginning again? I don't have permission to write in file. so marking the end is out of option. One possible way i got is to store the cursor position and then seek to that position next time.. Is there any other way through python?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can use the python tell file method to see what position you are in a file before you close it and the seek method to return to that position after you open it again.


Example:

Given a file foo with the contents

edas
agfa
agf
fgfgfg

You can return to a given position as follows:

>>> f = open('foo')
>>> f.tell()
0
>>> f.readline()
'edas
'
>>> f.tell()
5
>>> f.close()
>>> f = open('foo')
>>> f.tell()
0
>>> f.seek(5)
>>> f.readline()
'agfa
'

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...