C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
Linked Index AllocationSingle level linked Index AllocationIn index allocation, the file size depends on the size of a disk block. To allow large files, we have to link several index blocks together. In linked index allocation,
For the larger files, the last entry of the index block is a pointer which points to another index block. This is also called as linked schema. Advantage: It removes file size limitations Disadvantage: Random Access becomes a bit harder Multilevel Index AllocationIn Multilevel index allocation, we have various levels of indices. There are outer level index blocks which contain the pointers to the inner level index blocks and the inner level index blocks contain the pointers to the file data.
Advantage: Random Access becomes better and efficient. Disadvantage: Access time for a file will be higher.
Next TopicInode
|