bool isFileExists(const char* s) {
 bool result = false;

 int ret = 0;
 struct stat st;

 ret = stat(s, &st);
 CCLog("ret: %d\n",ret);

 if (ret == -1) {
  result = false;
  CCLog("File Not Found: [%s]", s);
 } else {
  result = true;
 }

 return result;
}
GNU C 에서 파일 Open 시도 하지 않고 파일의 존재 여부를 확인 할 수 있는 유일한 방법
VC에서는 방법이 여러가지가 있으나  시그윈에서 컴파일 시 헤더가 지원되지 않는다...
방법은 이것 뿐이다