2023-07-05 11:06:16 +02:00
|
|
|
# Directory
|
|
|
|
|
|
|
|
In terms of UNIX(r), a directory is a special file which contains a list
|
2024-04-02 23:19:23 +02:00
|
|
|
of [hardlinks](../dict/hardlink.md) to other files. These other files
|
2024-03-30 19:22:45 +01:00
|
|
|
also can be directories of course, so it's possible to create a
|
2023-07-05 11:06:16 +02:00
|
|
|
\"hierarchy of directories\" - the UNIX(r)-typical filesystem structure.
|
|
|
|
|
|
|
|
The structure begins at the special directory `/` (root directory) and
|
|
|
|
all other directory entries are **subdirectories** of it.
|
|
|
|
|
|
|
|
## See also
|
|
|
|
|
2024-04-02 23:19:23 +02:00
|
|
|
- [hardlink](../dict/hardlink.md)
|
|
|
|
- [file](../dict/file.md)
|
|
|
|
- [special file](../dict/special_file.md)
|