Advertisement
pneave

C++ File Exists??

Apr 16th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.12 KB | None | 0 0
  1. bool FileExists(const std::string name)
  2. {
  3.    struct stat buffer;
  4.    return (stat (name.c_str(), &buffer) == 0);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement