Dotcpp  >  编程教程  >  io.h头文件  >  C语言creat()函数:创建指定文件名的文件

C语言creat()函数:创建指定文件名的文件

点击打开在线编译器,边学边练

函数名:creat

头文件:<io.h>

函数原型: int creat(const char *file,int auth);

功能: 创建指定文件名的文件

参数:char *file 要创建的文件名 , int auth   为操作权限

返回值: 成功  返回文件句柄 ,失败  返回-1


程序例:  创建一个文件,然后输入内容,该函数创建文件不能覆盖同名的文件

#include<stdio.h>

#include<io.h>

#include<fcntl.h>

int main(void){

   char filename[80];

   printf("input file path and file name,eg d:\\a.txt:  ");

   gets(filename);

   int fd=creat(filename,O_RDONLY);

   if(fd==-1){

      printf("can not create the file\n");

      return 1;

   }

   printf("successful to create the file\n");

   close(fd);

   return 0;

}

 

运行结果

input file path and file name,eg d:\a.txt:  d:\c.txt
successful to create the file



本文固定URL:https://www.dotcpp.com/course/455

C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:

一点编程也不会写的:零基础C语言学练课程

解决困扰你多年的C语言疑难杂症特性的C语言进阶课程

从零到写出一个爬虫的Python编程课程

只会语法写不出代码?手把手带你写100个编程真题的编程百练课程

信息学奥赛或C++选手的 必学C++课程

蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程

手把手讲解近五年真题的蓝桥杯辅导课程

C语言函数库
assert.h头文件
ctype.h头文件
float.h头文件
io.h头文件
math.h头文件
mem.h头文件
setjmp.h头文件
stdio.h头文件
stdlib.h头文件
sigal.h头文件
string.h头文件
time.h头文件
Dotcpp在线编译      (登录可减少运行等待时间)