Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

Just discovered I have gotten a FOUND.000 folder on my usb drive. I guess from running chkdsk once. It has three files in it:

  • FILE0000.CHK
  • FILE0001.CHK
  • FILE0002.CHK

What exactly can I do with these files? What are my options? Are they lost files? Are they garbage? Can I use them for anything at all? Or will I just have to delete them?

share|improve this question
I think you should switch and accept NGLM's answer, he actually tells you what you can do with them. – barlop Nov 21 '12 at 0:00

7 Answers

up vote 15 down vote accepted

Those are recovered lost cluster chains. The clusters might get lost when file operations are interrupted abnormally. In the case of an USB flash drive, that might happen when you physically unplug the device before "Safely Removing Hardware" (actually, before the OS has finished writing cached data to the medium).

A single .CHK file may contain

  • a single entire file (or multiple entire files),
  • a part (or multiple parts) of a file (or multiple files) or
  • a really messy mix of the above.

Most often recovering something useful from those .CHK files is an extremely complicated (though, not entirely impossible) thing to do, thus, most often, it is just less of a headache simply to delete them and forget what happened.*


* This is not the case, when you realize, that you're missing something important. In this case it might turn out to be worth spending some effort to recover the lost data.

share|improve this answer

Wow, nobody has pointed this out yet.. unless I missed it.

You can rename them, if you have some idea of what they are. And then they can just open.

so, if you had some excel files on a floppy disk, as a friend did once, or could be a usb key to be up to date! and you had some file corruption issue and scandisk(chkdsk nowadays!) was run on it, and those CHK files produced, then you can try renaming them from CHK to XLS and may open them. I guess if it's on removable media as it is in your case, then you may have more of a clue what type of file it is.

I have renamed them on 2 different occasions, saved 2 different people!

makes me think, maybe linux's file command would identify what they are in some cases. or TRID file identifier. worth a try.

added-
http://www.raymond.cc/blog/archives/2008/01/07/how-to-recover-chk-files-created-by-chkdsk-and-scandisk/
he says a number of things, well worth reading the link, and he mentions these for identifying the files.

UnCHK by Eric Phelps
FileCHK by Martin Kratz
CHK-Mate

share|improve this answer

They are file fragments "recovered" from running a disk check in Windows.

If you know you are not missing any files, you can just delete them. I have never had a genuine case where they are real data.

share|improve this answer
1  
I'm not sure those are always whole recovered files. They might be just parts of files. – geek Mar 27 '10 at 10:21
1  
Could it be that those only ever appear on FAT volumes? I can't remember chkdsk creating them on an NTFS volume. – Joey Mar 27 '10 at 11:45
@Johannes: I think files with that particular name format are FAT; but NTFS does create files like that, from time to time - I've seen them on my system, with a slightly different name format. NTFS is more reliable than FAT and doesn't (as often?) end up with cross-linked clusters which are the chief cause of these in FAT. – Software Monkey Mar 28 '10 at 18:01
" I have never had a genuine case where they are real data." <-- I have seen 2 genuine cases. people had those files, and in both cases I renamed them from chk , (to xls maybe - excel) and saved their ass. – barlop Nov 20 '12 at 23:57

If there are important files missing: recover them!

There are nice utilities available as barlop already pointed out.

But another way is to restore them yourself. To make this a little comfortable, let explorer show the file extensions and let the preview pane show the files as text files. Then you really can make a good guess on which file extension the chunk files need to get, rename the extension and the preview pane shows the document in its native format, if succeeded (i.e. your made the correct guess).

To show the .CHK files as text files, use the registry editor to add or search for the .chk key under HKEY_CLASSES_ROOT. Add two string values (REG_SZ), e.g. like explained here:

  • Content Type = text/plain
  • PerceivedType = text

Now, what files should get what extension. Some tips:

  • PDF: The string PDF should be found at the first (short) line,
  • PNG: The string PNG should be fount within the first two lines,
  • ZIP: The first line starts with PK (but note that there are other formats starting with PK),
  • DWG: AutoCAD drawings start with AC####, where #### is the version number of AutoCAD drawing file format,
  • SVN: If the first line starts with DELTA, then there is a good possibility that it's a SubVersion revision delta file which has no extension,
  • GIF: The first line starts with GIF,
  • etc...
share|improve this answer
Nautilus in Ubuntu 12.04 generates previews for .CHK files containing JPG and AVI content – tommyk Dec 14 '12 at 20:16

No!! dont delete that!! they contain files that were present in your drive, may be useful and are lost accidently, most probably when you remove the drive quickly!! There is a command line converter for these files which may be found free over the net!! The name's "FileCHK" and I once recovered many files using this method!!

share|improve this answer

The Achilles' heel of all USB-driven external hard drives is that they push your laptop's power capabilities to the limit: even slight brownouts become extremely likely, making data corruption inevitable, and Microsoft complicates matters further by assuming it should run chkdsk for you whenever it likes -- even when low power conditions guarantee both a chkdsk fail and the corruption of the very data the utility is trying to 'save' for you. Not sure why the real world and the Microsoft world have diverged so much here.

share|improve this answer
1  
which OS does chkdsk keep running on usb drives with? usb sticks don't use much power do they? and external hard drives get powered externally. How do you know they use a lot of laptop power? how are you measuring it? – barlop Dec 28 '10 at 12:40

I recently used Chk-back to recover the .chk files that chkdsk creates, better still it is free and supports a large number of popular file types.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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