首頁 > 後端開發 > C++ > 主體

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

WBOY
發布: 2023-09-03 14:53:07
轉載
890 人瀏覽過

使用標準的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
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板