Is there a way to identify that a file has been modified and moved?

Posted by Eric on Stack Overflow See other posts from Stack Overflow or by Eric
Published on 2010-04-29T23:57:24Z Indexed on 2010/04/30 0:17 UTC
Read the original article Hit count: 154

Filed under:
|
|

I'm writing an application that catalogs files, and attributes them with extra meta data through separate "side-car" files. If changes to the files are made through my program then it is able to keep everything in sync between them and their corresponding meta data files. However, I'm trying to figure out a way to deal with someone modifying the files manually while my program is not running.

When my program starts up it scans the file system and compares the files it finds to it's previous record of what files it remembers being there. It's fairly straight forward to update after a file has been deleted or added. However, if a file was moved or renamed then my program sees that as the old file being deleted, and the new file being added. Yet I don't want to loose the association between the file and its metadata.

I was thinking I could store a hash from each file so I could check to see if newly found files were really previously known files that had been moved or renamed. However, if the file is both moved/renamed and modified then the hash would not match either.

So is there some other unique identifier of a file that I can track which stays with it even after it is renamed, moved, or modified?

© Stack Overflow or respective owner

Related posts about filesystem

Related posts about files