|
【C/C++】C/C++语言判断文件是否存在的方法浅析
1. 方法一:C语言之access
可以使用C语言中unistd.h里的函数access()来判断文件是否存在,其原型如下:
- int access(const char *filename, int mode);
复制代码
filename是文件名,mode有下列几种方法:
mode Description
F_OK 测试文件是否存在
R_OK 测试文件是否有读权限
W_OK 测试文件是否有写权限
X_OK 测试文件是否有执行权限
返回0,表示存在(成功),返回非0表示不存在(错误)。
使用方法
- #include <unistd.h>
- #include <stdio.h>
- int main(void)
- {
- if (access("test.txt", F_OK) == 0)
- {
- printf("test.txt exists.\n");
- }
- else
- {
- printf("test.txt not exists.\n");
- }
- return 0;
- }
复制代码
2. 方法二:C++方法之ifstream
ifstream中的good方法可以判断一个文件是否存在。
- #include <iostream>
- #include <string>
- #include <fstream>
- using namespace std;
- bool isFileExists_ifstream(string& name) {
- ifstream f(name.c_str());
- return f.good();
- }
- int main()
- {
- string filename = "test.txt";
- bool ret = isFileExists_ifstream(filename);
- if (ret)
- {
- cout << "test.txt存在" << endl;
- }
- else
- {
- cout << "test.txt不存在" << endl;
- }
- }
复制代码
3. 方法三:fopen方法
可以使用fopen的方式尝试打开一个文件。
- #include <iostream>
- #include <stdio.h>
- using namespace std;
- bool isFileExists_fopen(string& name) {
- if (FILE *file = fopen(name.c_str(), "r")) {
- fclose(file);
- return true;
- } else {
- return false;
- }
- }
- int main()
- {
- string filename = "test.txt";
- bool ret = isFileExists_fopen(filename);
- if (ret)
- {
- cout << "test.tx存在" << endl;
- }
- else
- {
- cout << "test.tx不存在" << endl;
- }
- }
复制代码
4. 方法四:sys中的stat函数方法
sys中的stat函数可以查阅文件的状态。
- #include <iostream>
- #include <sys/stat.h>
- using namespace std;
- bool isFileExists_stat(string& name) {
- struct stat buffer;
- return (stat(name.c_str(), &buffer) == 0);
- }
- int main()
- {
- string filename = "test.tx";
- bool ret = isFileExists_stat(filename);
- if (ret)
- {
- cout << "test.tx存在" << endl;
- }
- else
- {
- cout << "test.tx不存在" << endl;
- }
- }
复制代码
|
+10
|