Answers for "c stat check if file is directory"

7

c check if file exists

if( access( fname, F_OK ) == 0 ) {
    // file exists
} else {
    // file doesn't exist
}
Posted by: Guest on January-06-2021
1

c check dir/file

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>

int is_regular_file(const char *path)
{
    struct stat path_stat;
    stat(path, &path_stat);
    return S_ISREG(path_stat.st_mode);
}
Posted by: Guest on October-27-2020

Code answers related to "c stat check if file is directory"

Browse Popular Code Answers by Language