|
|
|
@ -11,11 +11,23 @@ bool isFile(const char *name)
|
|
|
|
|
return (stat != 0xFFFFFFFF &&
|
|
|
|
|
(stat & FILE_ATTRIBUTE_DIRECTORY) == 0);
|
|
|
|
|
}
|
|
|
|
|
#endif // _WIN32
|
|
|
|
|
#elif __linux__ // Linux implementations
|
|
|
|
|
|
|
|
|
|
// Linux implementations
|
|
|
|
|
#ifdef __linux__
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
|
bool isFile(const char *name)
|
|
|
|
|
{
|
|
|
|
|
// Does the file exist?
|
|
|
|
|
if(access(name,0) != 0)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
struct stat st;
|
|
|
|
|
if(stat(name, &st)) return false;
|
|
|
|
|
return S_ISREG(st.st_mode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#elif __APPLE__ // Darwin implementations
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
@ -29,4 +41,4 @@ bool isFile(const char *name)
|
|
|
|
|
if(stat(name, &st)) return false;
|
|
|
|
|
return S_ISREG(st.st_mode);
|
|
|
|
|
}
|
|
|
|
|
#endif // __linux__
|
|
|
|
|
#endif
|
|
|
|
|