mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-14 03:09:08 +00:00
use NEL CFile function for file test
This commit is contained in:
parent
4087c8d559
commit
1007da5a54
1 changed files with 1 additions and 6 deletions
|
@ -150,12 +150,7 @@ void outString (const string &sText)
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
bool fileExist (const std::string &sFileName)
|
bool fileExist (const std::string &sFileName)
|
||||||
{
|
{
|
||||||
#ifdef NL_OS_WINDOWS
|
return NLMISC::CFile::isExists(sFileName) ;
|
||||||
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
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue