Get position for file descriptor in Python

余生长醉 提交于 2019-12-05 12:53:35
VisioN

So, the answer seems to be quite easy. I had to use os.lseek with SEEK_CUR flag:

import os
print(os.lseek(fd, 0, os.SEEK_CUR))

I don't know if it is the only approach, but at least it works fine.

INTERPRETED: ftell on a file descriptor?

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!