FreeBASIC  0.91.0
file_exists.c
Go to the documentation of this file.
1 /* file existence testing */
2 
3 #include "fb.h"
4 
6  (
7  const char *filename
8  )
9 {
10  FILE *fp;
11 
12  fp = fopen(filename, "r");
13  if (fp)
14  {
15  fclose(fp);
16  return FB_TRUE;
17  }
18  else
19  {
20  return FB_FALSE;
21  }
22 }