判断文件是否存在的另一种方法 _access 和 _waccess

Posted 朝闻道

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断文件是否存在的另一种方法 _access 和 _waccess相关的知识,希望对你有一定的参考价值。

函数原型:

int _access( const char *path, int mode );

int _waccess( const wchar_t *path, int mode );

 

示例代码:

 

[cpp] view plain copy
 
  1. #include <io.h>  
  2. #include <stdio.h>  
  3. #include <stdlib.h>  
  4.   
  5. int _tmain(int argc, _TCHAR* argv[])  
  6. {  
  7.     //如果文件具有指定的访问权限,则函数返回0  
  8.     //如果文件不存在或者不能访问指定的权限,则返回-1  
  9.   
  10.     //备注  
  11.     //当path为文件时,_access函数判断文件是否存在,并判断文件是否可以用mode值指定的模式进行访问  
  12.     //当path为目录时,_access只判断指定的目录是否存在,在WindowsNT和Windows2000中,所有目录都有读写权限  
  13.   
  14.     //mode值  
  15.     //00    只检查文件是否存在  
  16.     //02    写权限  
  17.     //04    读权限  
  18.     //06    读写权限  
  19.   
  20.     //_waccess是_access的宽字符版本  
  21.     if (_access("demo.txt", 0) != -1)  
  22.     {  
  23.         printf("the demo.txt exist\n");  
  24.   
  25.         //判断文件是否可写,假定文件是只读的  
  26.         if (_access("demo.txt", 2) == -1)  
  27.         {  
  28.             printf("the demo.txt does not have write permission\n");  
  29.         }  
  30.         else  
  31.         {  
  32.             printf("the demo.txt have write permission\n");  
  33.         }  
  34.     }  
  35.     else  
  36.     {  
  37.         printf("the demo.txt does not exist\n");  
  38.     }  
  39.   
  40.     system("pause");  
  41.     return 0;  
  42. }  

https://blog.csdn.net/hellokandy/article/details/78471006

以上是关于判断文件是否存在的另一种方法 _access 和 _waccess的主要内容,如果未能解决你的问题,请参考以下文章

C语言access函数判断绝对地址下的文件存在问题

CentOS环境Tomcat配置JDK的另一种方式

创建线程的另一种方法:通过类创建(28-1)

介绍几种使用C/C++语言判断一个文件是否存在的方法

vc判断文件是否存在

在>=win10 17134枚举驱动的另一种方法