Retrieve deleted folders

arive123arive123 Member Posts: 3 Contributor I
edited November 2018 in Help

I installed RapidMIner Studio. Then created a Repositoryand saved it to the Desktop. The Repository attached itself to folders that were already on the Desktop and have nothing to do with RapidMiner. Then in RapidMiner, I removed the folders in the Repository window, and now those folders are permanently deleted and cannot be found in the Recycle Bin. Where did they go? Do I restore my system to an earlier state?

Best Answer

  • arive123arive123 Member Posts: 3 Contributor I
    Solution Accepted

    It appears the recovery tool Disk Drillyou recommended is for Mac. Is there one you recommend for Windows?

Answers

  • rfuentealbarfuentealba Moderator, RapidMiner Certified Analyst, Member, University Professor Posts: 568 Unicorn

    Hello, @arive123,

     

    Oh-oh...

     

    When you delete a file programmatically (like when you do that in Java), the process inside the operating system is the following:

     

    • Search for the file entry that is stored in the filesystem metadata.
    • Set write lock = false as a conditional.
    • Try:
      • Create a write lock for the file entry if there is none assigned.
      • Set write lock = true to check if there is a condition.
    • Catch:
      • Error: The file is in use and cannot be deleted.
    • If the write lock is true:
      • Remove the file entry from the filesystem metadata.
      • Replace the header on each cluster that belongs to that file (internally, a file is a structure*) by null (meaning that it's not used by any file).

    *If you take a theoretical microscope and search how the data is saved into disk, the filesystem inside has a structure much like this one:

     

    { cluster: number }

        [ header ]

        [ data ]

        [ pointer ]

     

    The header (that's not the correct technical term but I can't remember a better one) shows 0 if that cluster isn't in use or the file entry identifier otherwise, and the pointer has the number of the next cluster on that file. A file is saved in many clusters, the file entry has a pointer to the first node for that file. Everytime the file is opened, there is an iterator that reads the file entry, then the header, copies the data in memory, reads the pointer to the next cluster to repeat the operation.

     

    When you delete those files from Windows (like, pressing the Del key), only the last line of the process is different: instead of removing the file entry, it is remapped to C:\Recycled or something in that fashion.

     

    The question is: where did they go? the answer is Nowhere. the file entry is deleted (think as removing a table of contents from a book) but your information might still be recoverable as it is on the disk. To get your information back, you should use a recovery tool such as Disk Drill. The thing is, the more you use the computer and save information there, more possibilities of actually destroying your information by overwriting with new things you have. Basically, the operating system still keeps the information. By far much more cost-effective than actually filling each bag.

     

    It would be a clever thing if you could turn your computer off without downloading anything until you get a copy of that program on USB or something.

     

    That is why there is a .RapidMiner hidden directory (which isn't hidden in Windows, but that's another story): moving a repository to another location is something people shouldn't do unless they know what are the consequences and be extremely careful with data that is stored on these disks.

     

    Hope it helps and you recover your information.

     

    All the best,

  • rfuentealbarfuentealba Moderator, RapidMiner Certified Analyst, Member, University Professor Posts: 568 Unicorn
  • lopezlopez Member Posts: 1 Newbie
    In fact, when you delete a folder, it is not completely deleted. If you don't know that you can recover before the data is overwritten, you may overwrite your data and make it unrecoverable. And, in addition to using data recovery tools, there are many other ways you can recover folders from the recycle bin.
Sign In or Register to comment.