1.如果是判断单个文件,对耗时不太关心的可以使用access,(3157=10s)

#include <unistd.h>
#include <stdio.h>
// return 0 if OK; return −1 on error
int access(const char *pathname, int mode); 

pathname就是文件名(可包含路径),mode的取值有以下几种,可以使用或操作(OR)来组合,
mode Description
F_OK 测试文件是否存在
R_OK 测试文件是否有读权限
W_OK 测试文件是否有写权限
X_OK 测试文件是否有执行权限

2.对于多文件判断,注重耗时,使用stat判断(3157=0.6s)

struct stat st;
memset(&st,0,sizeof(st));
if(stat(filename,&st) == 0)
{
	printf("filename exist \n");
}
else
{
	printf("filename not exist \n");
}
Logo

更多推荐