ホームページ  >  記事  >  バックエンド開発  >  標準の C/C++ を使用して、ファイルが存在するかどうかを確認する最良の方法は何ですか?

標準の C/C++ を使用して、ファイルが存在するかどうかを確認する最良の方法は何ですか?

WBOY
WBOY転載
2023-09-03 14:53:07876ブラウズ

標準の C/C++ を使用して、ファイルが存在するかどうかを確認する最良の方法は何ですか?

ファイルが存在するかどうかを確認する唯一の方法は、読み取りまたは書き込みのためにファイルを開いてみることです。

これは例です:

In C

Example

#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");
   }
}

Output

file exists

In C

Example

#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 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。