Determine if a file exists in the search path.
Defined in <physfs.h>
int PHYSFS_exists(const char *fname);| const char * | fname | filename in platform-independent notation. |
(int) Returns non-zero if filename exists. zero otherwise.
Reports true if there is an entry anywhere in the search path by the
name of fname.
Note that entries that are symlinks are ignored if PHYSFS_permitSymbolicLinks(1) hasn't been called, so you might end up further down in the search path than expected.
It is safe to call this function from any thread.
This function is available since PhysicsFS 1.0.0.