But all the schoolbooks show the hard drive to be a big file cabinet, with multiple drawers, labeled A- Z. Did my teachers lie to me ? :-)
No. I wouldn't say that they "lied". I would say that they simplified things at the beginning and you may have missed the reality checkpoints later in the curricula. Please do not get offended. This misconception is common. In Unix you should look at the link count associated with a file.

Basically I am saying that the file system directory associates a text name with essentially a starting byte number on the hard drive. There can be more than one text name associated with the same byte number on the hard drive. These are called "hard links".

So, I would say that it is a pretty good approximation to say that the hard disk gets divided up into blocks. A file is just a name in the directory that points to a sequence of these blocks. More than one file name can point to the same sequence of blocks. These blocks on the hard drive are not reused until the reference count to them drops to zero (this just like Perl reference counting).

So, a more accurate description would be that there are file cabinets with drawers, folders and documents. You have a spiral bound book that associates a "text name" and a file/folder in cabinet1, drawer2, folder3,document5. There may be more than one name in your spiral bound book that points to exactly the same place! Your spiral bound book is what a directory entry is.


In reply to Re^2: renaming a file and moving into another folder by Marshall
in thread renaming a file and moving into another folder by sravan008

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.