Hello all,
Let's consider the following 3 code lines:
struct stat buffer;
status = lstat(file.c_str(), &buffer);
bool Flag = S_ISREG(buffer.st_mode)
When S_ISREG() returns true
it tells you that the file is a regular file
What does regular means exactly ?
Thanks