C标准库-fdopen函数

2022-07-25, updated 2022-07-31

1
2
3
#include <stdio.h>

FILE * fdopen(int fildes, const char * mode);

函数说明:fdopen()会将参数fildes 的文件描述词, 转换为对应的文件指针后返回.

参数mode 字符串则代表着文件指针的流形态, 此形态必须和原先文件描述词读写模式相同. 关于mode 字符串格式请参考fopen().

返回值:转换成功时返回指向该流的文件指针. 失败则返回NULL, 并把错误代码存在errno 中.

范例

1
2
3
4
5
6
7
#include <stdio.h>
main()
{
    FILE * fp = fdopen(0, "w+");
    fprintf(fp, "%s\n", "hello!");
    fclose(fp);
}

执行

1
hello!
words: 195 tags: