0

Accidentally one of my folder was delete by my own self(That folder was at Downloads). And then I moved to trash and that folder was there. Then I right click on that folder and select restore. But now that folder is not in Downloads neither trash ,So where that file goes after restore ? Is there any way to get that file ?

(I'm using ubuntu 12.04)

In terminal I tried this to search it as said in early question asked in askubuntu cd .local/share/Trash/files but after ls that was empty . Give some help.

  • Just tried this in my 12.04.3LTS64bit (Dutch): Restore works flawlessly both on empty and populated subfolders. Can't reproduce your error. – Peter Eijlander Nov 27 '13 at 08:57

2 Answers2

0

Try this command on terminal,

find / -xdev 2>/dev/null -name "foldername"
Avinash Raj
  • 78,556
0

I just deleted my Downloads folder, and then attempted to restore from trash, and it restored to the original location by default.

Also deleted a folder from inside the Downloads folder, and it also was restored to the original location.

To find where the folder is on the drive, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

find / -type d -name "folder_name" 2> /dev/null
Mitch
  • 107,631