use NEL CFile function for file test

--HG--
branch : lightmap_optimizer_port_to_linux
This commit is contained in:
liria 2014-01-25 17:09:07 +01:00
parent a6d9521ae6
commit 16dbe48ed5

View file

@ -150,12 +150,7 @@ void outString (const string &sText)
// ---------------------------------------------------------------------------
bool fileExist (const std::string &sFileName)
{
#ifdef NL_OS_WINDOWS
return (GetFileAttributes(sFileName.c_str()) != INVALID_FILE_ATTRIBUTES);
#else // NL_OS_WINDOWS
struct stat buf;
return stat (sFileName.c_str (), &buf) == 0;
#endif // NL_OS_WINDOWS
return NLMISC::CFile::isExists(sFileName) ;
}
// -----------------------------------------------------------------------------------------------