豆腐脑 发表于 2014-12-15 13:37:52

crente()文件属性问题

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

#define RWRWRW S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH
void create_file(char *filename)
{
   umask(S_IRGRP|S_IROTH);

    if(creat(filename, RWRWRW ) < 0)
      {
         printf("create file %s failure!\n", filename);
         exit(EXIT_FAILURE);
       }
   else
       {
         printf("create file %s success!\n", filename);

       }
}
int main(int argc, char *argv[])
{
    mode_t mask = umask(0);
    if(argc<2)
    {
      perror("you han't input the filename,please try again!\n");
       exit(EXIT_FAILURE);
      }
create_file(argv);
exit(EXIT_SUCCESS);
}
执行:gcc file_creat.c-o file_creat
root@boyang-virtual-machine:/opt/set1# ./file_creat file1
-rw-r--r-- 1 root root    0 12月 15 13:27 file1

在从新编译下:
gcc file_creat.c-o file_creat
root@boyang-virtual-machine:/opt/set1# ./file_creat file1
-rw-r--r-- 1 root root    0 12月 15 13:34 file1
只有在更改文件名后文件的属性才能更改,问什么?
root@boyang-virtual-machine:/opt/set1# ./file_creat file5
-rw--w--w- 1 root root    0 12月 15 13:36 file5

豆腐脑 发表于 2014-12-17 14:16:26

没有人回答这个问题?
页: [1]
查看完整版本: crente()文件属性问题