CRC checks for files - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T01:56:05Z http://stackoverflow.com/feeds/question/245223 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/245223/crc-checks-for-files 4 CRC checks for files Danny 2008-10-28T23:10:42Z 2008-10-29T16:08:51Z <p>I'm working with a small FAT16 filesystem, and I want to generate CRC values for indidual XML files which store configuration information. In case the data changes or is corrupted, I want to be able to check the CRC to determine that the file is still in it's original state.</p> <p>The question is, how do I put the CRC value into the file, without changing the CRC value of the file itself? I can think of a couple solutions, but I think there must be a fairly standard solution for this issue.</p> http://stackoverflow.com/questions/245223/crc-checks-for-files/245228#245228 5 Answer by Greg Hewgill for CRC checks for files Greg Hewgill 2008-10-28T23:13:39Z 2008-10-28T23:13:39Z <p>You could append the CRC value to the end of the file. Then, when computing the CRC value later for checking, omit the last four bytes.</p> http://stackoverflow.com/questions/245223/crc-checks-for-files/245233#245233 3 Answer by PiedPiper for CRC checks for files PiedPiper 2008-10-28T23:14:17Z 2008-10-28T23:14:17Z <p>Define a header, generate the CRC of everything except the header then put the value in the header.</p> http://stackoverflow.com/questions/245223/crc-checks-for-files/245235#245235 0 Answer by Kibbee for CRC checks for files Kibbee 2008-10-28T23:15:08Z 2008-10-28T23:15:08Z <p>There is no way to do this. You could make the first x bytes (CRC uses a 32 bit integer, so 4 bytes) of the file contain the CRC, and then when calculating your CRC, you could only consider the bytes that come after that initial 4 bytes. </p> <p>Another solution would be to include the CRC into the file name. So MyFile.Config would end up being MyFile.CRC1234567.Config.</p> http://stackoverflow.com/questions/245223/crc-checks-for-files/245243#245243 1 Answer by Kluge for CRC checks for files Kluge 2008-10-28T23:19:40Z 2008-10-28T23:19:40Z <p>One solution would be to use dsofile.dll to add extended properties to your files. You could save the CRC value (converted to a string) as an extended file property. That way you don't change the structure of the file.</p> <p>dsofile.dll is an ActiveX dll so it can be called from various languages, however it confines you to running on Windows. Here's more information on dsofile.dll: <a href="http://support.microsoft.com/kb/224351" rel="nofollow">http://support.microsoft.com/kb/224351</a></p> http://stackoverflow.com/questions/245223/crc-checks-for-files/245279#245279 2 Answer by Wedge for CRC checks for files Wedge 2008-10-28T23:39:22Z 2008-10-28T23:39:22Z <p>A common solution is to just use different files. Alongside each file simply have a file with the same file name with a different extension. For example: foobar.txt and foobar.txt.md5 (or .crc).</p> http://stackoverflow.com/questions/245223/crc-checks-for-files/245302#245302 1 Answer by KPexEA for CRC checks for files KPexEA 2008-10-28T23:51:12Z 2008-10-28T23:51:12Z <p>I wouldn't store the CRC in the file itself. I would have a single file ( I would use XML format ) that your program uses, with a list of filenames and their associated CRC values. No need to make it that complicated.</p> http://stackoverflow.com/questions/245223/crc-checks-for-files/245408#245408 1 Answer by shoosh for CRC checks for files shoosh 2008-10-29T00:41:54Z 2008-10-29T00:41:54Z <p>The common solution which is widely used in communication protocols is to set the CRC field to 0, compute the CRC and then place it instead of the 0. The checking code should do the reverse process - read the CRC, zero the field, calculate the CRC and compare. </p> <p>Also, for a file checksum I strongly recommend MD5 instead of CRC.</p>