Ask HN: Tool that lets you identify changes an app makes to the disk?
Similar to using the time command ($ time <app>) in a shell to see duration of execution, I wondered if there's something that will be similarly executed and give you a read-out of the changes an app makes to disk.
5 comments
[ 3.9 ms ] story [ 18.1 ms ] threadIf you are on *nix you can list all the files that a process is using: $ lsof -p <PID>,<PID>,<PID>
Then do a diff of the listed files against older versions of the files (e.g from a backup).
On Windows you can use procmon.exe (its a free tool from Microsoft that lists all network, registry and files) and see the updates in realtime.
Hope those work.
inotifywatch (from inotify-tools) can show you changes made to files in a particular directory.