How to search in windows according to access date

I have found only according to "date modified" and not "access date"

I haven't found any ways of sorting this correctly. Maybe I should use third party software?


In Powershell (which is already installed on your Windows 7 machine) you could do something like this:

Get-childItem C:\* -recurse -include *.txt | Where-Object{$_.LastAccessTime -gt (Get-Date).AddDays(-7)}

This would recursively search the C drive for any text file accessed in the last 7 days for example.