Checking files for errors - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T04:59:39Zhttp://stackoverflow.com/feeds/question/245526http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/245526/checking-files-for-errors2Checking files for errorsVaer2008-10-29T01:41:29Z2008-10-29T02:12:39Z
<p>I have lots of files in different formats (mostly pdf files) and I need to check if they can be opened without errors and get a list of those that are broken.</p>
<p>Other than opening them all separately is there a way to find out which won't open / are corrupt?</p>
http://stackoverflow.com/questions/245526/checking-files-for-errors/245588#2455881Answer by stimms for Checking files for errorsstimms2008-10-29T02:12:39Z2008-10-29T02:12:39Z<p>Not really, no. Because there are so many file types it would be impossible to know if a file was corrupt without opening it. It might open without errors but still be corrupt so even that isn't going to help you. You could try a general file opening solution like <a href="http://www.autonomy.com/content/Products/idol-modules-keyview-viewing/index.en.html" rel="nofollow">KeyView</a> which can open most file formats. If it fails then chances are the file is corrupt. </p>