The reference is removed, a metadata file is kept in the Recycle Bin to know the original location.
In the early days, on Windows 95 and 98 this was located in \RECYCLED
. On Windows 2000 and later it was renamed to \RECYCLER
. Since Windows Vista it is now a special folder called \$Recycle.Bin
.
Use Process Monitor to see the I/O under the hood, put a filter on Recycle.Bin
and visit it. :)
For example, when I do this:
notepad \$RECYCLE.BIN\S-1-5-21-0192837465-987654321-0123456789-1000\$EXAMPL5
Note: The long folder name is a User SID. The last folder name is a hash based on the metadata.
I get a file that contains metadata information like this:
Ö¸ÌC : \ P a t h \ T o \ S o m e \ E x a m p l e . t x t
The reason that the file path has spaces in between is because it is stored in wide byte chars, to support special characters for certain languages as well as unicode and what else. The earlier symbols are binary and contain information like the file size and permissions, as well as a pointer to the file data. In essence, it contains enough information to reconstruct the original reference...
It's sad that the Windows Internals book doesn't cover this, or else I would've had more reference. I haven't found any articles that go into detail on this, neither by Microsoft or by third party people. They probably do exist but I found it easier to go and reverse engineer the main concept...
1
The best info is always from the folks who actually write recovery software: http://www.pandorarecovery.com/knowledge_base/general/recycler.php . And also see http://dereknewton.com/2010/06/recycle-bin-forensics-in-windows-7-and-vista/ and http://linuxsleuthing.blogspot.sg/2009/10/processing-vista-recyclebin.html and http://www.cybersecurityinstitute.biz/INFO2.htm
– Pacerier – 2015-07-09T07:04:33.6473This is actually an interesting question. If the recycle bin were simple, it wouldn't take forever to add a folder with a few thousand files to it. – Daniel Beck – 2011-12-17T05:45:39.453
3
Start with the Wikipedia article.
– William Jackson – 2011-12-17T05:47:55.790http://www.tomshardware.com/forum/95622-45-recycle-work – OG Chuck Low – 2011-12-17T05:49:07.150