美文网首页
python读取文件追加内容

python读取文件追加内容

作者: 打工是不可能打工的1 | 来源:发表于2017-10-10 16:58 被阅读0次

    有时候我们在处理日志文件时候不需要关注日志文件之前的内容,只需要关注文件新追加的内容,就好像linux的tail -f功能差不多,不多废话,代码如下:

            with open('/test/access.log') as f:
                f.seek(0, 2)
                while True:
                    time.sleep(1)
                    last_pos = f.tell()
                    line = f.readline()

    相关文章

      网友评论

          本文标题:python读取文件追加内容

          本文链接:https://www.haomeiwen.com/subject/dhqbyxtx.html