It was never so easy to get YouTube subscribers
Get Free YouTube Subscribers, Views and Likes

Directory Structure | tree structured directory | acyclic graph directory | operating system | files

Follow
Sudhakar Atchala

#DirectoryStructure #filesystem #operatingsystemlectures
A directory is a container that is used to contain folders and file. It organizes files and folders into a hierarchical manner.
Singlelevel directory –
Single level directory is simplest directory structure.In it all files are contained in same directory which make it easy to support and understand.

A single level directory has a significant limitation, however, when the number of files increases or when the system has more than one user. Since all the files are in the same directory, they must have the unique name . if two users call their dataset test, then the unique name rule violated.
Advantages:

Since it is a single directory, so its implementation is very easy.
If files are smaller in size, searching will faster.
The operations like file creation, searching, deletion, updating are very easy in such a directory structure.

Disadvantages:

There may chance of name collision because two files can not have the same name.
Searching will become time taking if directory will large.
In this can not group the same type of files together.

Twolevel directory –
As we have seen, a single level directory often leads to confusion of files names among different users. the solution to this problem is to create a separate directory for each user.

In the twolevel directory structure, each user has there own user files directory (UFD). The UFDs has similar structures, but each lists only the files of a single user. system’s master file directory (MFD) is searches whenever a new user id=s logged in. The MFD is indexed by username or account number, and each entry points to the UFD for that user.
Advantages:

We can give full path like /Username/directoryname/.
Different users can have same directory as well as file name.
Searching of files become more easy due to path name and usergrouping.

Disadvantages:

A user is not allowed to share files with other users.
Still it not very scalable, two files of the same type cannot be grouped together in the same user.

Treestructured directory –
Once we have seen a twolevel directory as a tree of height 2, the natural generalization is to extend the directory structure to a tree of arbitrary height.
This generalization allows the user to create there own subdirectories and to organize on their files accordingly.

A tree structure is the most common directory structure. The tree has a root directory, and every file in the system have a unique path.

Advantages:

Very generalize, since full path name can be given.
Very scalable, the probability of name collision is less.
Searching becomes very easy, we can use both absolute path as well as relative.

Disadvantages:

Every file does not fit into the hierarchical model, files may be saved into multiple directories.
We can not share files.
It is inefficient, because accessing a file may go under multiple directories.

Acyclic graph directory –
An acyclic graph is a graph with no cycle and allows to share subdirectories and files. The same file or subdirectories may be in two different directories. It is a natural generalization of the treestructured directory.

It is used in the situation like when two programmers are working on a joint project and they need to access files. The associated files are stored in a subdirectory, separating them from other projects and files of other programmers, since they are working on a joint project so they want the subdirectories to be into their own directories. The common subdirectories should be shared. So here we use Acyclic directories.

It is the point to note that shared file is not the same as copy file . If any programmer makes some changes in the subdirectory it will reflect in both subdirectories.

posted by Znojilamiu4