頭檔案
#include
#include
函式原型
int fchmod(int fildes,mode_t mode);
說明
參數fildes為已打開檔案的檔案描述詞。
參數mode請參考chmod()。許可權改變成功則返回0,失敗返回-1,錯誤原因存於errno。
EBADF 參數fildes為無效的檔案描述詞。
EPERM 進程的有效用戶識別碼與欲修改許可權的檔案所有者不同,而且也不具root許可權。
EROFS 欲寫入許可權的檔案存在於唯讀檔案系統內。
EIO I/O存取錯誤。
範例
#include
#include
main()
{
int fd;
fd = open (“/etc/passwd”,O_RDONLY);
fchmod(fd,S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
close(fd);
}