linux c 文件打开并创建代码分析

[root@luozhonghua 03]# cat ex03-open-03.c/*文件ex03-open-03.c,O_CREAT和O_EXCL的使用*/#include #include #include #include int main(void){ int fd = -1; char filename[] = "test.txt"; /*打开文件,如果文件不存在,则报错*/ fd = open(filename,O_RDWR|O_CREAT|O_EXCL,S_IRWXU); /*O_RDWR读写模式,O_CREAT创建模式,O_EXCL存在与否模式,S_IRWXU读写权限,注意fd返回值0输入,1输出,2错误*/ if(-1 == fd){ /*文件已经存在*/ printf("File %s exist!,reopen it",filename); /*重新打开*/ fd = open(filename,O_RDWR); printf("fd:%d\n",fd); } else { /*文件不存在,创建并打开*/ printf("Open file %s success,fd:%d\n",filename,fd); } return 0;}

linux c 文件打开并创建代码分析,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。