The fragments are re-used, any time new data is written
to the hard disk.
The OS determines which fragments are re-used from the
free list pile.
You dont have to worry about the fragments "wearing out" like a tape.
However the fragments do become more and more mixed up
all over the disk, and this is what they call a fragmented disk
which DOES lower performance.
For example... when you save a 10 meg file to your harddrive,
the operating systems looks for free fragments on the disk.
It breaks up the file into thousands of these smaller fragments,
called "blocks", and each block contains a piece of the larger file
and a POINTER to the next fragment. It writes the file to
the disk as a bunch of fragments, strung together by address links.
So imagine what it takes to read a file.
You start with the first block/fragment, read the data, and
read the address to the next block, which may exist on the
other side of the disk surface.
So the harddrive is told to move its head to the other side
of the disk and read THAT fragment/block.
It follows this TRAIL of data all over the disk until it reassembles
the file into memory as a WHOLE.
If your files are broken up into a zillion fragments/blocks all
over the hard drive disk surface, INSTEAD of being in nice
clean continuous block, which does not require much hard drive head
movement, your performance goes to hell.
DEFRAGGING your harddrive shuffles all these blocks around
so they end up in nice continuous block on the disk surface
for each file.
This makes reading a file back into memory as efficient as possible.
I have software which defrags my harddrive every night
at 3am for optimal performance.
Just run your "disk defragmenter" software on each harddisk
at least once a week.
peace
axeman
Quote from bronks:
Thanks guys.
So eventually, do all these fragments pile up on the hard drive? Does that do anything to performance, say...like a cassette tape eventually gets crummy after you record over it a few times? Apples and oranges, I know. But it's the only analogy I could think of.