存在

Linux下的C++程序:判断目录/文件是否存在

本秂侑毒 提交于 2020-03-01 07:18:17
本文中写了两个函数: 1)int IsFileExist(const char* path) 用于检查一个目录是否存在 -1:存在 0:不存在 2)int IsFileExist(const char* path) 用于检查文件(所有类型,包括目录类型)是否存在 -1:存在 0:不存在 如果不存在,可以用以下两种方式打印错误信息: 1)fprintf(stderr, "ERROR: %s\n", strerror(errno)); 2)perror("ERROR"); 程序代码: #include <stdio.h> #include <dirent.h> #include <unistd.h> #include <sys/stat.h> #include <string.h> #include <errno.h> //检查目录是否存在 //-1:存在 0:不存在 int IsFolderExist(const char* path) { DIR *dp; if ((dp = opendir(path)) == NULL) { return 0; } closedir(dp); return -1; } //检查文件(所有类型)是否存在 //-1:存在 0:不存在 int IsFileExist(const char* path) { return !access(path, F