linux C之access函数

linux C之access函数linuxC之access函数access():判断是否具有存取文件的权限相关函数  stat,open,chmod,chown,setuid,setgid表头文件  #include定义函数  intaccess(constchar*pathname,intmode);函数说明  access()会检查是否可以读/写某一已存在的文

linux C之access函数

access():判断是否具有存取文件的权限
相关函数
    stat,open,chmod,chown,setuid,setgid
表头文件
    #include<unistd.h>
定义函数
    int access(const char * pathname, int mode);
函数说明
    access()会检查是否可以读/写某一已存在的文件。参数mode有几种情况组合, R_OK,W_OK,X_OK 和F_OK。R_OK,W_OK与X_OK用来检查文件是否具有读取、写入和执行的权限。F_OK则是用来判断该文件是否存在。由于access()只作权限的核查,并不理会文件形态或文件内容,因此,如果一目录表示为“可写入”,表示可以在该目录中建立新文件等操作,而非意味此目录可以被当做文件处理。例如,你会发现DOS的文件都具有“可执行”权限,但用execve()执行时则会失败。
返回值
    若所有欲查核的权限都通过了检查则返回0值,表示成功,只要有一权限被禁止则返回-1。
错误代码
    EACCESS 参数pathname 所指定的文件不符合所要求测试的权限。
    EROFS 欲测试写入权限的文件存在于只读文件系统内。
    EFAULT 参数pathname指针超出可存取内存空间。
    EINVAL 参数mode 不正确。
    ENAMETOOLONG 参数pathname太长。
    ENOTDIR 参数pathname为一目录。
    ENOMEM 核心内存不足    
    ELOOP 参数pathname有过多符号连接问题。
    EIO I/O 存取错误。
附加说明
    使用access()作用户认证方面的判断要特别小心,例如在access()后再做open()的空文件可能会造成系统安全上的问题。

范例

(1)

#include <stdio.h> 
#include <stdlib.h> 
#include <unistd.h> 
#include <fcntl.h>
int main(int argc, char *argv[]) 

   if (argc < 2) { 
       printf(“Usage: ./test filename\n”); 
       exit(1); 
   } 
   if (access(argv[1], F_OK) == -1) { 
       puts(“File not exists!”); 
       exit(2); 
   } 
   if (access(argv[1], R_OK) == -1) 
       puts(“You can’t read the file!”); 
   else 
       if (access(argv[1], R_OK | W_OK) != -1) 
           puts(“You can read and write the file”); 
       else 
           puts(“You can read the file”); 
   
   exit(0); 

(2)

#include <stdio.h> 

#include <stdlib.h> 
#include <unistd.h> 
#include <fcntl.h>
int main(int argc, char *argv[]) 

   if (argc < 2) { 
       printf(“Usage: ./test filename\n”); 
       exit(1); 
   } 
   if (access(argv[1], F_OK) == -1) { 
       puts(“File not exists!”); 
       exit(2); 
   } 
   if (access(argv[1], R_OK) == -1) 
       puts(“You can’t read the file!”); 
   else 
       if (access(argv[1], R_OK | W_OK) != -1) 
           puts(“You can read and write the file”); 
       else 
           puts(“You can read the file”); 
   
   exit(0); 
}

参考:

http://blog.sina.com.cn/s/blog_6a1837e90100uh5d.html

http://blog.163.com/lqy_super/blog/static/199751021201302351831330/

今天的文章linux C之access函数分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/5569.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注