I have a python method to archive files not modified in 6 months to another drive by iterating through the directories. But what is the fastest way to find all non-modified files from the whole partition?
Found this below answer to find modified files and I suppose it is in the current path. But what If the root path is given and want to list all unmodified files.
I would like to modify the question a bit based on an observation I found in the answer I have posted below- (from the link). The find directory -mtime +180
function returns directories as well. So how do I list only files which are not modified in last 6 months and not directories?
find directory -type f (etc.)
to ensure only files, and not directories, match? – AdminBee Jun 29 '20 at 14:46