How to find the recycle bin in Windows 7


Recycle Bin is located in a hidden directory named $Recycle.Bin%SID%, where %SID% is the SID of the user that performed the deletion.

Since this is a hidden folder you won't see anything in it by default.


To see the folders

  • Open Explorer
  • In the location bar enter C:$Recycle.Bin and press Enter
  • Click Organize
  • Select Folder and Search Options
  • Select the View tab
  • Select Show hidden files, folders, and drives
  • Untick Hide protected operating system files
  • Click OK

You can also do this from the command line but the file names are encoded as explained in the linked article. When I tried this I noticed I could see more files than were visible in Explorer.

  • Click Start
  • Type cmd in the seach box and press Enter
  • Type cd c:$recycle.bin et appuyez sur Entrée
  • Tapez dir /ah et appuyez sur Entrée pour voir tous les dossiers disponibles.
  • Tapez dir *.* /s et appuyez sur Entrée pour voir tous les fichiers dans tous les dossiers disponibles (avec leurs noms codés).

Dans mon cas, j'ai trouvé deux dossiers qui contenaient des fichiers. L'un était ma corbeille. L'autre provenait d'un autre utilisateur et contenait des fichiers que je ne pouvais pas voir dans Explorer. Je pouvais cependant copier ces fichiers ailleurs, les ouvrir, etc.

.