Detect changes in a filesystem since last scan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T18:02:23Z http://stackoverflow.com/feeds/question/249371 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/249371/detect-changes-in-a-filesystem-since-last-scan 2 Detect changes in a filesystem since last scan Matt 2008-10-30T05:45:49Z 2009-11-19T21:43:35Z <p>Programs that index filesystems seem to know which parts have changed since their last index and only rescan that part. How can I determine where the filesystem/files have changed since my last index. Don't care what language you answer in but I'm thinking c and windows.</p> <p>An example of such a program is Sequoia View which generates a treemap of your hard disk.</p> http://stackoverflow.com/questions/249371/detect-changes-in-a-filesystem-since-last-scan/249394#249394 4 Answer by cfeduke for Detect changes in a filesystem since last scan cfeduke 2008-10-30T06:05:53Z 2008-10-30T06:05:53Z <p>A fairly simplistic method would be to take the file system's reported files sizes, dates (as integer values), and file names in a given directory and calculate a <a href="http://en.wikipedia.org/wiki/Checksum" rel="nofollow">checksum</a> you could then associate with that directory. You would still need to perform this calculation on all of the directories using file system data but you wouldn't have to go in depth (opening files to check for differences) unless a checksum reported a difference.</p> <p>For tracking specific changes at the file level you would store checksums based on individual file attributes, and of the course the presence of or absence of files and subdirectories since the last scan.</p> <p>This wouldn't necessarily guarantee that changes have not occurred as there are file system utilities for altering all manner of attributes though it would be a good first step for a basic scan.</p> <p>You may find the <a href="http://sourceforge.net/project/showfiles.php?group_id=156978&amp;package_id=175371" rel="nofollow">source code</a> for <a href="http://sourceforge.net/projects/fswatch" rel="nofollow">fswatch</a> helpful.</p> http://stackoverflow.com/questions/249371/detect-changes-in-a-filesystem-since-last-scan/249397#249397 1 Answer by Windows programmer for Detect changes in a filesystem since last scan Windows programmer 2008-10-30T06:06:55Z 2008-10-30T06:06:55Z <p>FindFirstChangeNotification</p> http://stackoverflow.com/questions/249371/detect-changes-in-a-filesystem-since-last-scan/249403#249403 4 Answer by Aydsman for Detect changes in a filesystem since last scan Aydsman 2008-10-30T06:11:00Z 2008-10-30T06:11:00Z <p>If you were coding in a .Net managed language, try out the <a href="http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx" rel="nofollow" title="FileSystemWatcher Class (System.IO)">FileSystemWatcher</a> class.</p> <p>From MSDN:</p> <blockquote> <p>Use FileSystemWatcher to watch for changes in a specified directory. You can watch for changes in files and subdirectories of the specified directory. You can create a component to watch files on a local computer, a network drive, or a remote computer.</p> <p>To watch for changes in all files, set the Filter property to an empty string ("") or use wildcards ("<em>.</em>"). To watch a specific file, set the Filter property to the file name. For example, to watch for changes in the file MyDoc.txt, set the Filter property to "MyDoc.txt". You can also watch for changes in a certain type of file. For example, to watch for changes in text files, set the Filter property to "*.txt".</p> </blockquote> http://stackoverflow.com/questions/249371/detect-changes-in-a-filesystem-since-last-scan/249821#249821 2 Answer by Ferruccio for Detect changes in a filesystem since last scan Ferruccio 2008-10-30T11:09:40Z 2008-10-30T11:09:40Z <p>Look into <a href="http://msdn.microsoft.com/en-us/library/aa365261(VS.85).aspx" rel="nofollow">directory change notifications</a>.</p> http://stackoverflow.com/questions/249371/detect-changes-in-a-filesystem-since-last-scan/1023126#1023126 2 Answer by ashleigh for Detect changes in a filesystem since last scan ashleigh 2009-06-21T03:24:21Z 2009-06-21T03:24:21Z <p>You have 2 issues to deal with here.</p> <p>The first is if you want to watch for dynamic changes (made while your program is running). In that case, you need to use the Windows API ReadDirectoryChangesW. There are plenty of on-line examples for how to use it. (Beware... some examples are not very good. This API call CAN AND WILL return more than one event for each call and you need to read the interface carefully, understand how it works, and process EVERYTHING that gets returned.</p> <p>The second issue is if you have a folder, or list of folders, and you want to check if its / their contents have changed - either by adding/deleting or changing files in that folder.</p> <p>In this case, the most effective method is to read the folder contents a file name at a time, and make a cumulative hash. More than that, though, you also want to get the attributes (using something like GetFileAttributesEx), and include those in the hash as well. (make sure to exclude the folders "." and ".." - or the results will be misleading.)</p> <p>The reason for this is that you want to catch changes in a file by its size, dates, etc. You probably dont want to include the LastAccessed time though.</p> <p>Any big hashing function should do. The result is a single big number (the hash) for each folder.</p> <p>Then when you make another pass over, you re-compute the hash and compare with the stored hash for the last known state of that folder. If the hashes don't match, then you need to go poking through the folder in detail.</p> <p>Effectively, this approach tells you (quickly) that there is something here you need to look at in more detail, and how you do that depends on what you are trying to achieve.</p> <p>This has the advantage that you are not looking at the contents of each file in the folder, but instead at some meta-data which gives you enough of an indication. The processing is thus many thousands of times faster.</p> http://stackoverflow.com/questions/249371/detect-changes-in-a-filesystem-since-last-scan/1688355#1688355 0 Answer by unknown (google) for Detect changes in a filesystem since last scan unknown (google) 2009-11-06T15:35:50Z 2009-11-19T21:43:35Z <p>Under Linux (and any other Unix-like OS I suppose) one could generate a hash value for a file/folder to represent its state at a given time. Later, just regenerate the hash and compare that with the old value. This proved to be very effective for some of the projects I was working on!</p> <p>Details are here: <a href="http://valeriu.palos.ro/169/recursive-filedirectory-change-detection/" rel="nofollow">http://valeriu.palos.ro/169/recursive-filedirectory-change-detection/</a></p> <p>It is sensitive to basically any change (even when only changing the access time of a file).</p>