show/hide this revision's text 3 Fixed typo on return values

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;
}
show/hide this revision's text 2 edited title

How do I What's the best way to check if a file exists in C? (cross platform)

show/hide this revision's text 1

How do I check if a file exists in C?

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 0;
    }
    return 1;
}