| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 515 人关注过本帖
标题:umask 等函数运行错误
取消只看楼主 加入收藏
xinhua1413
Rank: 2
等 级:论坛游民
帖 子:40
专家分:16
注 册:2009-4-29
结帖率:100%
收藏
已结贴  问题点数:10 回复次数:1 
umask 等函数运行错误
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>

#define RWRWRW (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)

int
main(void)
{
    umask(0);
    if (creat("foo", RWRWRW) < 0)
        printf("creat error for foo");
    umask(S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
    if (creat("bar", RWRWRW) < 0)
        printf("creat error for bar");
    exit(0);
}
结果是
  求解释
-rwxrwxrwx. 1 root root 0 2011-03-04 07:44 bar
-rwxrwxrwx. 1 root root 0 2011-03-04 07:44 foo
搜索更多相关主题的帖子: include 爱爱 
2011-03-04 22:14
xinhua1413
Rank: 2
等 级:论坛游民
帖 子:40
专家分:16
注 册:2009-4-29
收藏
得分:0 
我还不想沉
2011-03-04 23:29
快速回复:umask 等函数运行错误
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.025275 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved