Using fseek with a file pointer that points to stdin

倾然丶 夕夏残阳落幕 提交于 2019-11-27 05:25:51

Yes, it's perfectly normal that fseek won't work on stdin -- it'll normally only work on a disk file, or something reasonably similar.

Though it's really a POSIX thing, you can typically use if (isatty(fileno(myFile))) to get at least a pretty good idea of whether seeking will work in a particular file. In some cases, isatty and/or fileno will have a leading underscore (e.g., IIRC the versions provided with Microsoft's compilers do).

Fseek() is based on lseek(), and the lseek man page discusses possible errors, including:

 [ESPIPE]           Fildes is associated with a pipe, socket, or FIFO.

If stdin is connected to a pseudo tty, I believe it will have socket behavior.

Jorge

Here is the relevant entry in the ANSI standard concerning the fseek function:

For a text stream, either offset shall be zero, or offset shall be a value returned by an earlier successful call to the ftell function on a stream associated with the same file and whence shall be SEEK_SET

So, possible but with some limitations

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