如何将文件指针(file * fp)转换为文件描述符(int fd)?

我有一个FILE *,由调用fopen()返回。我需要从它获得一个文件描述符,以便对它进行fsync(fd)之类的调用。从文件指针获取文件描述符的函数是什么?

142968 次浏览

正确的函数是int fileno(FILE *stream)。它可以在<stdio.h>中找到,并且是POSIX标准,但不是标准C。

即使fileno(FILE *)可能返回一个文件描述符,也要非常小心不要绕过stdio的缓冲区。如果存在缓冲区数据(读取或未刷新写入),从文件描述符读取/写入可能会得到意想不到的结果。

要回答其中一个题外话,要将文件描述符转换为file指针,请使用fdopen(3)

  fd = _fileno(fp);  // Probably the best way
fd = fp->_file;     // direct from the FILE structure, member


   

typedef struct _iobuf  {
char*   _ptr;
int     _cnt;
char*   _base;
int     _flag;
int     _file;
int     _charbuf;
int     _bufsiz;
char*   _tmpfname; } FILE;