首页  >  文章  >  后端开发  >  使用标准的C/C++,检查文件是否存在的最佳方法是什么?

使用标准的C/C++,检查文件是否存在的最佳方法是什么?

WBOY
WBOY转载
2023-09-03 14:53:07866浏览

使用标准的C/C++,检查文件是否存在的最佳方法是什么?

检查文件是否存在的唯一方法是尝试以读取或写入的方式打开文件。

下面是一个示例:

在C语言中

示例

#include<stdio.h>
int main() {
   /* try to open file to read */
   FILE *file;
   if (file = fopen("a.txt", "r")) {
      fclose(file);
      printf("file exists");
   } else {
      printf("file doesn&#39;t exist");
   }
}

输出

file exists

在 C++ 中

示例

#include <fstream>
#include<iostream>
using namespace std;
int main() {
   /* try to open file to read */
   ifstream ifile;
   ifile.open("b.txt");
   if(ifile) {
      cout<<"file exists";
   } else {
      cout<<"file doesn&#39;t exist";
   }
}

输出

file doesn&#39;t exist

以上是使用标准的C/C++,检查文件是否存在的最佳方法是什么?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除