>>1533616Here's a powershell script for that:
# Define the path to the folder
$folderPath = "C:\Path\To\Your\Folder"
# Get all files recursively and select required properties
Get-ChildItem -Path $folderPath -Recurse -File |
Select-Object FullName, LastAccessTime |
Sort-Object LastAccessTime -Descending |
Format-Table -AutoSize