I want to get list of created files and folders after certain date in whole server, is it possible and how can i do?
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
You can't find files based on creation time, but you can find it based on change time, by using
will list all files and folders changed 2 days or less ago |
|||||||||||
|
|
Linux does not store the file/folder creation date. Have a look at this page. You can see the following timestamp kept in inode and retrieved using stat system call.
|
|||
|
|