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);
return 01;
}
return 10;
}
|
3 | Fixed typo on return values | ||
|
Is there a better way than simply trying to open the file?
|
||||
|
2 |
edited title
|
||
How do I What's the best way to check if a file exists in C? (cross platform) |
||||
|
1 |
|
||
How do I check if a file exists in C?Is there a better way than simply trying to open the file?
|
||||