stat

    C / LINUX stat() fstat() lstat()

    함수 기능 pathname/fildes파일의 stat구조체를 리턴하는 시스템호출 stat 지정한 pathname에 해당하는 파일에 대한 정보를 넣은 stat구조체를 buf로 리턴 fstat 지정 filedes 오픈 확인하고 해당파일에 대한 정보를 넣은 stat구조체를 buf로 리턴 lstat 심볼릭 링크 파일 자체에 대한 정보를 넣은 stat구조체 자체 리턴 함수 원형 #include #include #include int stat(const char *restrict pathname, struct stat *restrict buf) int fstat(int filedes, struct stat *buf) int lstat(const char *restrict pathname, struct stat *r..