Linux文件编程——创建一个文件

  • Post author:
  • Post category:linux


1.创建文件函数 : creat

通过man 2 open 手册查得函数原型为

需要的头文件为: #include <sys/types.h>

#include <sys/stat.h>

#include <fcntl.h>

函数原型为:int creat(const char *pathname, mode_t mode);

第一个参数:pathname为所要创建的文件名(包含路径、缺省为当前路径)。

第二个参数为:mode :创建模式

常见的创建模式:     宏表示               数字

1.S_IRUSR           4                            可读

2.S_IWUSR          2                           可写

3.S_IXUSR           1                            可执行

4.S_IRWXU          7                            可读可写可执行

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include<stdio.h>
#include <unistd.h>
#include<string.h>
#include<stdlib.h>
int main()
{
  int fd;

// int creat(const char *pathname, mode_t mode);  //函数原型

  fd =  creat("/home/CLC/file989",S_IRWXU);    //以可读可写可执行的方式创建

   return 0;

}



版权声明:本文为m0_47725713原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。