我創建使用下面的代碼文件:的open()未設置文件權限正確
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
int main()
{
const char* filename = "./test.out";
int fd;
if(-1 == (fd = open(filename, O_CREAT|O_RDWR, 0666)))
{
perror("Error");
errno = 0;
}
else
puts("File opened");
if(-1 == (close(fd)))
{
perror("Error");
errno = 0;
}
else
puts("File closed");
return 0;
}
我指定的mode
參數作爲0666
,應授予讀取,寫入訪問給大家。然而,ls -l
顯示
-rw-r--r-- 1 kmehta users 0 2012-01-29 16:29 test.out
正如你所看到的,寫權限僅僅授予文件的所有者。我不知道爲什麼其他人沒有正確授予權限。 chmod a+w test.out
雖然正確設置權限。
代碼編譯爲gcc -Wall test.c
規格:GCC v 4.5.0在openSUSE 11.3 64個
檢查umask。檢查umask。 – wildplasser 2012-01-29 22:40:07
你是否嘗試使用常量來表示標誌,例如S_IRUSR,S_IRGRP等? – dasblinkenlight 2012-01-29 22:41:39
@dasblinkenlight使用常量沒有幫助。這是一個umask問題,現在打開文件後使用fchmod,如答案 – jitihsk 2012-01-29 22:59:18