what is the find to command to find the files created last 30 days

what is the find to command to find the files created last 30 days

please refer man pages and try out on your own. if its not done then reply with your tried efforts.

Well, even if you search on man pages of find, you will not find the creation time. So you better search in the forum for much better answer.:smiley:

find . -type f -mtime -30 -print

or

find . -type f -mtime -30 -ls

print just displays files, ls shows dates and times etc

Isn't mtime to find modified time while the requester is asking creation time???

to answer the original question, file creation time is not stored, and do read this if you haven't yet