fstatat 썸네일형 리스트형 파일의 속성을 check 하는 코드 - fstatat, fstat, stat, lstat 아래는 dirfd 아래에 asecName 이라는 파일이 regular file인지 check 하는 코드 ex) dirfd = "/mnt/secure/asec/" asecName = "1234" 이면 /mnt/secure/asec/1234 라는 regular file 이 있는지 check 해 준다. struct stat sb; bool ret = (fstatat(dirfd, asecName, &sb, AT_SYMLINK_NOFOLLOW) == 0) && S_ISREG(sb.st_mode); http://www.tutorialspoint.com/unix_system_calls/stat.htm The following POSIX macros are defined to check the file type usi.. 더보기 이전 1 다음