- 2,128
- 32
How do you list creation date of a file in linux bash? I want to find creation date of some files, not just modification date. Thanks.
stat -c %W filename
stat -c %w filename
mount -p
/etc/mnttab
cd /path/to/content
ls -ltc *.whatever # files in order most recent -> oldest and shows ctime
ls -ltrc *.something # files in order oldest -> most recent and shows ctime
jim mcnamara said:ctime will do for most of what creation time does.