Computer Science, asked by rehan80, 1 year ago

differentiate between link and pipe files

Answers

Answered by huzaifaa6881
7

In Linux, everything is a file.

You cannot have a directory and a file of the same name (regardless of extension), just like you cannot have two files of the same name.

A directory is just a file, too.

The difference is that a directory can contain other files. It does not matter how it is called, it can have an extension (or two). What makes it a directory is that it was created as such.

A directory is one (of many) type of special file. It doesn't contain data. Instead, it contains pointers to all of the files that are contained within the directory.

Answered by asharamabro
3

Answer:

link: This file acts as an alias of the actual file to which it points.

pipe files: this file acts as a channel between processes and carries information from one to another.

Similar questions