欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

1-2、讯为系统编程creat

程序员文章站 2024-03-08 10:15:28
...

打开文件creat函数

       #include <sys/types.h>
       #include <sys/stat.h>
       #include <fcntl.h>

int creat(const char* pathname,mode_t mode);
  • 参数path表示:路径名或者文件名。路径名为绝对路径
  • 参数oflags表示:打开文件所采取的动作

O_RDONLY文件只读;O_WRONLY文件只写;O_RDWR文件可读可写

 

相关标签: 讯为iTop4412