Search Results

8
votes
5answers
3k views

What’s the best way to check if a file exists in C? (cross platform)

Is there a better way than simply trying to open the file? int exists(const char *fname) { FILE *file; if (file = fopen(fname, "r")) { fclose(file); retu …