用open创建一个0777的普通文件。
#include<stdio.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<fcntl.h>
int main()
{
umask(0);
int temp=open("./1.c",O_WRONLY|O_CREAT|O_TRUNC,0777);
printf("temp=%d\n",temp);
if(temp<0)
{
perror("open");
return -1;
}
return 0;
}