Linux/Unix/::FAQ

find 옵션에서 -atime -ctime -mtime

채종윤 2005. 7. 5. 14:55
ctime - Many times this is understood as a creation time but that wrong. Ctime is change time
of file stats such as ownership, what permissions it has etc.

mtime - File modification time. Value of mtime is updated when content of file changes.

atime - File access time. Value of atime is modified when file is opened.

풀어서 말하자면
-atime : 파일을 열어본 시간 또는 디렉토리에 cd명령으로 접근한 시간
-mtime :파일의 내용이 변경된 시간 ls -l 에서 나오는 시간
-ctime :파일의 정보가 변경된 시간 chmod, chown과 연관성이 있습니다.