acess函数的用法

来源:互联网 发布:路由器密码破解软件 编辑:程序博客网 时间:2024/05/21 06:38

int   access(const   char   *filename,   int   amode); 
amode参数为0时表示检查文件的存在性,如果文件存在,返回0,不存在,返回-1。 
这个函数还可以检查其它文件属性: 
06     检查读写权限 
04     检查读权限 
02     检查写权限 
01     检查执行权限 
00     检查文件的存在性
而这个就算这个文件没有读权限,也可以判断这个文件存在于否
存在返回0,不存在返回-1

C函数
  函数名: access 
  功 能: 确定文件的访问权限 
  用 法: int access(const char *filename, int amode);

程序例: 
  

  1. #include <stdio.h> 
  2.   #include <io.h> 
  3.   int file_exists(char *filename); 
  4.   int main(void) 
  5.   { 
  6.   printf("Does NOTEXIST.FIL exist: %s\n", 
  7.   file_exists("NOTEXISTS.FIL") ? "YES" : "NO"); 
  8.   return 0; 
  9.   } 
  10.   int file_exists(char *filename) 
  11.   { 
  12.   return (access(filename, 0) == 0); 
  13.   }