I would want to discover the quickest method to verify if a file exists in standard C++11, C++, or C. I have thousands of files and before preparing something on them I need to examine if all of them exist. What can I write rather than
/ SOMETHING */
in the subsequent function?
inline bool exist(const std::string& name)
{
/* SOMETHING /
}