open

函数原型:

#include<fcntl.h>

#include<sys/types.h>

#include<sys/star.h>


int open(const char *path,int oflags);

int open(const char *path,int oflags,mode_t mode);


*path:要创建的文件名称

oflags:制定打开文件时所采取的动作

mode:当用O_CREAT标志的open来创造文件时,要用到此参数,访问权限的初始值。



你可能感兴趣的:(open)