c语⾔句柄的作⽤及⽤法,C语⾔fdopen()函数:将流与⽂件
句柄连接
函数名:fdopen
fprintf作用头⽂件:
函数原型: int fdopen(int handle,char* type);
功能:将流与⽂件句柄连接
参数: int handle 为要操作的⽂件句柄 ,char *type 指定流打开⽅式
返回值: 返回指向该流的⽂件指针
程序例:使⽤函数连接⽂件句柄和流,以流的⽅式向⽂件中输⼊⼀⾏字符串#include
#include
#include
int main(void){
int fd=open("D:\\a.txt",_O_RDWR+O_CREAT);
if(fd==-1){
printf("can not reate the file\n");
return 1;
}
FILE *fp=fdopen(fd,"w");
fprintf(fp,"mingri soft\nminri book\n");
fclose(fp);
printf("OK");
return 0;
}
运⾏结果OK
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论