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;
    }