Moving instead of deleting?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I almost understand why deleting a file from my hard drive leaves the
liklihood of that file later being recovered. But what about moving it to a
flash drive? Is recovery on the hard drive still possible?
 
Goomba said:
I almost understand why deleting a file from my hard drive
leaves the
liklihood of that file later being recovered. But what about
moving it to a
flash drive? Is recovery on the hard drive still possible?

Yes. All the happens when you move a file is it's deleted from
the old place t he same way it's deleted when you delete it.
The data is still there on the disk until it gets overwritten.
 
Exactly the same chance of recovery. Move/delete will remove the index
entry when done. The disk area where the file was is intact, until it is
rewritten to in a later procedure.
 
In
Goomba said:
I almost understand why deleting a file from my hard drive leaves the
liklihood of that file later being recovered. But what about moving
it to a flash drive? Is recovery on the hard drive still possible?

Chances of recovery on the hard drive are exactly the same if you continue
to use it. The likely hood of retrieving the file from the flash drive is
probably 100%.
What was the gist of your question?
--
Michael Stevens MS-MVP XP
(e-mail address removed)
http://www.michaelstevenstech.com
For a better newsgroup experience. Setup a newsreader.
http://www.michaelstevenstech.com/outlookexpressnewreader.htm
 
Michael Stevens said:
In

Chances of recovery on the hard drive are exactly the same if you continue
to use it. The likely hood of retrieving the file from the flash drive is
probably 100%.
What was the gist of your question?

I think he means if he moves a file to a flash drive, as opposed to deleting
it, will the file still be recoverable from the HDD.

The answer is yes. When you move a file it is the same as copying, then
deleting the original.

You need some kind of secure delete program to get rid of the file left on
the HDD (used several times).

Basically Windows uses a Table Of Contents (like an index in a book) to
point to the location of the file on the disk. When you "delete" a file
under Windows the "listing" if the file in the TOC is removed, but the file
is left and the space it occupies on the disk is marked as free space (ready
to be over written).

This is akin to erasing a reference to X in a book index, but leaving the
pages of the actual X in the book. So when the index is examined, there is
no reference to X, but if you leaf through the actual pages you will still
find the X material there.

This is basically to save wear and tear on the physical hard disk AFAIK,
also means you HDD is available for read commands.
 
Back
Top