首頁  >  文章  >  後端開發  >  使用標準的C/C++,檢查檔案是否存在的最佳方法是什麼?

使用標準的C/C++,檢查檔案是否存在的最佳方法是什麼?

WBOY
WBOY轉載
2023-09-03 14:53:07879瀏覽

使用標準的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刪除