Stat

pchero on August 7th, 2014

utime 은 파일의 Access time 및 Modification time 을 변경할 때 사용하는 함수이다. 특정 파일 정렬을 할 때, 파일의 이름을 파싱해서 정렬을 하는 것이 아닌, 파일의 Modification time 을 기준으로 정렬을 해야하는 경우가 있다. 이런 경우, 파일 작업 이후에도 이전의 Modification time 을 유지해야 하는 경우가 있는데, 이런 경우, utime 을 사용하면 편리하다.   utime […]

Continue reading about utime

pchero on July 30th, 2014

이번에 dirent 와 stat 을 이용하여 작업을 하면서 알게된 내용들을 간단하게 정리했다. dirent dirent 는 디렉토리 정보를 담는 구조체이다. dirent 와 scandir() 을 사용하면 디렉토리에 어떤 파일들이 있는지 간략하게 알 수 있는 속성과 파일 리스트 포인터를 이용할 수 있다. struct dirent { #ifndef __USE_FILE_OFFSET64 __ino_t d_ino; __off_t d_off; #else __ino64_t d_ino; __off64_t d_off; #endif unsigned […]

Continue reading about dirent, stat