A mapping of abstract view of directories/files and the physical representation on disk.
An object that can be written to and/or read from
fd = open(
F_i)
– copies the entry to a
F_i file to main local memoryclose(fd)
– copies the local entry of the file F_i to the FS catalogueNowadays a tree structure:
Directories can share files by hard and soft links.
A hard link points to the same contents as the file we are linking with. Changing the contents of either files will change it for the other one too.
Soft links (symlinks) are just a pointer to where the original file is. If the original file is removed, the symlink becomes a dangling pointer (points to something that no longer exists.)