Why does deleted data stay on a HDD once written, waiting to be overwritten, as opposed to being removed when requesting deletion?

412 views

Why does deleted data stay on a HDD once written, waiting to be overwritten, as opposed to being removed when requesting deletion?

In: 22

30 Answers

Anonymous 0 Comments

Computers do two main things on storage: read and write. Both these things can only be done so fast. Bigger files require more reading and writing than small ones.

The reason the actual file isn’t removed is because that requires writing over all the data which means it would take a long time for big files. So whenever something gets deleted, instead of actually removing the data, the computer just pretends it doesn’t exist.

You are viewing 1 out of 30 answers, click here to view all answers.