I'm looking for a way to track changes of a folder, with sub-folders and files, from time to time - not in real time. Basically I want to know which folders/files that was changed (changed or delete) from the last time I looked.
A simple solution would be to make a copy of the entire folders/files and then do some diff when I want to know what have changed. I could touch the files so they wouldn't take up any space and look at the file date to see if it was changed. ...but it doesn't seem like a good option.
This would take place on a Linux system. The file-system I would watch would be mounted (out of my control) but the other file-system would I be in control of, if anyone was thinking about some specific trick for a file-system.
Do anyone got a good solution?