檢查檔案是否存在的唯一方法是嘗試以讀取或寫入的方式開啟檔案。
下面是一個範例:
#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't exist"); } }
file exists
#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't exist"; } }
file doesn't exist
以上是使用標準的C/C++,檢查檔案是否存在的最佳方法是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!