View Single Post
Old 08-09-2003, 06:23 PM   #5 (permalink)
Silvy
paranoid
 
Silvy's Avatar
 
Location: The Netherlands
You're correct on the pointers...

FIRST: something on the organization of data on the disk
The harddrive (and floppy drive too...) is made up of small blocks. Each block can hold a little piece of data.

A file that is larger than a single block gets its data written in the first available block (say nr 100). When that block is full it goes on to write thing in the next avail. block (say 101). Now in block 100 it will write that the file is continued in block 101.

So you could have a file in blocks like this:
100 -> 101 -> 200 -> 201
(the system will ofcourse skip blocks that are already occupied by data from other files)

Now in the FAT there is a list like this:
File1 (starts at) -> 103
File2 (starts at) -> 100
File3 etc.

Now if you remove File1 you'll have this:
(first character remove denotes a free 'chain')
?ile1 (starts at) -> 103
File2 (starts at) -> 100
File3 etc.

This allows the system to find free blocks (just follow the trail from "?ile1". It does not need to actually empty the contents or remove the links (between 100 and 101).
essentially keeping the file intact.


---> I'm assuming you're aware that computer information is stored in bits and bytes for the next answer
On to the more technical side: You're father is right!

A harddisk consists of spinning disks and a head (like a vinyl record player)
the disk has a rough surface consisting of many (very, very small) pieces of metal. By using a magnet, you can point these pieces of metal in different directions.
The head has a very small electromagnet that can point each of these pieces of metal independently.
These pieces of metal are commonly called 'bits' They can have 2 values: 0 and 1 (or on the disk: 'left' and 'right' pointing)

When you write a file to disk the head looks up an empty spot (it can also 'feel' the bits) and constantly manipulates these free bits to make a pattern that matches your file.

The Fat is somewhat like any other information on the disk, it needs to be written with that head. So when you delete a file, the system changes the first character of the filename in the FAT, by rearranging that part of the disk... Just so it matches '?ile1' instead of 'File1'


Notes:
- These are the basics probably many people could elaborate or even correct me, but the essence should be correct.
- The actual emptying of a file (overwriting its contents) amounts to all '0's as the file pattern.
- I've used a '?' to mark an empty character.

Hope I've helped answer your question....
__________________
"Do not kill. Do not rape. Do not steal. These are principles which every man of every faith can embrace. "
- Murphy MacManus (Boondock Saints)
Silvy is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360