It is a common task for system administrators to identify all changes in the file system in the last few days.
Here is a useful command to find all changed files in the last 7 days:
find . -type f -mtime -7 -exec stat --format '%Y :%y %n' "{}" \; | sort -nr | cut -d: -f2-