I've just lost some code. I needed to move a couple of methods from one class to another so i hit save, cut the methods and VS crashed. Now it seems that the save happened after the cut since the code has been saved without those methods but the code isn't on my clipboard. So I'm left without the code and no easy way to get it back!

I know that Visual Studio keeps a document cache which it uses when the recover files dialog is shown but it wasn't shown when VS started back up. I'm hoping that there is a version of my class with the code still in there so i don't have to start again but i don't know where to look.

Can anybody tell me where VS keeps these files on disk?

Really appreciate ANY help you can offer.

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

Sorted it. Those recovery files are located @ MyDocuments\Visual Studio X\Backup Files\Project Name...

link|improve this answer
1  
Also nice to know (least with 2010) is that the recovered file & the original file are in the same folder, I just had a corupt 'recovered' file almost lose me 2 days worth of work (yet the original file was actually up to date...) – Skuld Nov 9 '11 at 16:30
feedback

If you have compiled the code into a DLL, then you can use ILSpy, or Reflector to decompile that back into code.

link|improve this answer
feedback

It doesn't help you now, but you might want to install ClipX, which helps keep as many items on the clipboard as you'd like. It's helped me in times when the crash happened, but there was a version on the clipboard awhile back.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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