Answers for "check if file name exist in c++ folder"

C++
2

c++ check if file exits

#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";
   }
}
Posted by: Guest on January-28-2021

Code answers related to "check if file name exist in c++ folder"

Browse Popular Code Answers by Language