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文件可读可写