I have written a small program and server to upload large files over HTTP with CRC validation and resume-functionality. It works pretty well as it is, but I am wondering if I should reconsider some of the validity checking, because it might be redundant.

The title of the question actually says it all.

Is it wholly redundant to check the CRC validity of the complete file? Since I know that each chunk is valid, and should still be valid (if there has not been a file system error, in which case I should be in el grande trouble anyway) at the time of zipping the file together, I think it should be enough to be reasonably sure that the upload went smoothly.

What do you think?

Best regards

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

This shouldn't be necessary, if the chunks are correct then how would the combined chunks not be correct?

link|improve this answer
Of course, this was my thought too. But I don't know enough about CRC32 to make an educated judgement of this. Perhaps the 32-bit length is not enough to verify the file completely by looking at only the chunks, and I would benefit from the added security? – Max Mar 10 '11 at 13:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.