1 / 41

FILE SYSTEM

FILE SYSTEM. Introduction. File System is a mechanism which is provided by the operating system to store and retrieve files on the disk. This system is primarily responsible for the management and organization of various files in a system. File Concept.

shaw
Download Presentation

FILE SYSTEM

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. FILE SYSTEM

  2. Introduction File System is a mechanism which is provided by the operating system to store and retrieve files on the disk. This system is primarily responsible for the management and organization of various files in a system.

  3. File Concept A file is a collection of related data stored as a named unit on the secondary storage. It can store different types of data, like text, graphics, database, executable code, sound, videos, etc and on the basis of the data, a file can be categorized as a data file, graphic file, database file, executable file, sound file, video file, etc.

  4. File Attributes A file in a system is identified by its name. The file name helps a user to locate a specific file in the system. Different operating systems follow different file naming conventions. File attributes help the file system to manage a file within the system. Files attributes may vary in different operating system.

  5. File Attributes • Name • Size • Type • Identifier • Location • Date and Time • Protection

  6. File Attributes • Name • Size • Type • Identifier • Location • Date and Time • Protection Helps to identify and locate a file in the system.

  7. File Attributes • Name • Size • Type • Identifier • Location • Date and Time • Protection Stores information about the current size of the file.

  8. File Attributes • Name • Size • Type • Identifier • Location • Date and Time • Protection Helps the operating system to recognize and use the recommended program to open a particular file type.

  9. File Attributes • Name • Size • Type • Identifier • Location • Date and Time • Protection A unique tag, usually a number that helps the file system to recognize the file within the file system.

  10. File Attributes • Name • Size • Type • Identifier • Location • Date and Time • Protection A pointer that stores location information of the device and location of the file on that device.

  11. File Attributes • Name • Size • Type • Identifier • Location • Date and Time • Protection Stores information such as date and time of creation, last modification and last use. This is useful for protection, security and monitoring.

  12. File Attributes • Name • Size • Type • Identifier • Location • Date and Time • Protection Stores information about the access permissions (read, write, execute) of different users.

  13. File Operations • File operations are the functions that can be performed on a file. Operating system handles the file operations through the use of system calls. Various operations that can be performed on a file are: • Create a file • Open a file • Write to a file • Read a file

  14. File Operations • Seek file • Close file • Delete file • Append file • Rename file

  15. File Operations • File operations are the functions that can be performed on a file. Operating system handles the file operations through the use of system calls. Various operations that can be performed on a file are: • Create a file • Open a file • Write to a file • Read a file “create” system call is used to create a file. When this system call is used, the operating system searches for the free space in the file system and allocates it to the file. In addition, the OS makes a directory entry to record the name, location and other information about the file.

  16. File Operations • File operations are the functions that can be performed on a file. Operating system handles the file operations through the use of system calls. Various operations that can be performed on a file are: • Create a file • Open a file • Write to a file • Read a file “open” system call accepts the file name and the access-mode as parameters to open a file and returns a pointer to the entry in the open-file table. The OS searches the directory entry for the file name and also checks the access permission.

  17. File Operations • File operations are the functions that can be performed on a file. Operating system handles the file operations through the use of system calls. Various operations that can be performed on a file are: • Create a file • Open a file • Write to a file • Read a file “write” system call accepts the file name and the data to be written to the file as parameters. The OS searches the directory entry to locate the file and writes data to the specified position in the file and also updates the write pointer to the location where next write operation is to take place.

  18. File Operations • File operations are the functions that can be performed on a file. Operating system handles the file operations through the use of system calls. Various operations that can be performed on a file are: • Create a file • Open a file • Write to a file • Read a file “read” system call accepts the file name, amount of data to be read and a read pointer to point to the position from where the data is to be read as parameters. The current position pointer will be updated after the read operation.

  19. File Operations • Seek file • Close file • Delete file • Append file • Rename file “seek” system call is used to position the pointer to a specific position in a file. Once the pointer is positioned, data can be read from and written to that position.

  20. File Operations • Seek file • Close file • Delete file • Append file • Rename file “close” system call is used to close a file, when all the operations on that file are completed. The OS erase the file entry from the open-file table to make space for the new file entries.

  21. File Operations • Seek file • Close file • Delete file • Append file • Rename file “delete” system call is used to delete a file, when a file is not required. The OS will erase its corresponding directory entry also.

  22. File Operations • Seek file • Close file • Delete file • Append file • Rename file “append” system call is used to add data at the end of an existing file. The system call works similar to the “write” system call, except that it positions the pointer to the end of the file and then performs the write operation.

  23. File Operations • Seek file • Close file • Delete file • Append file • Rename file “rename” system call is used to change the name of an existing file. The OS changes the directory entry also.

  24. File Types The most common technique to implement file type is by providing extension to a file. The file name is divided into two parts separated by a period, where the first part is the name and the second part after the period is the file extension. A file extension is generally one to three characters long. The extension indicates the type of the file and the operations (read, write, execute) that can be performed on that file.

  25. File Types

  26. Access Methods • The information stored in the file can be accessed as follows: • Sequential Access • Direct Access

  27. Access Methods • The information stored in the file can be accessed as follows: • Sequential Access • Direct Access Information from the file is accessed in order, one record after the other. Compilers, multimedia applications, sound files, etc. are the most common examples of programs using sequential access. In case of a read operation, the record at the location pointed by the file pointer is read and the file pointer is then advanced to the next record. In case of write operation, the record is written to the end of the file and pointer is advanced to end of new record.

  28. Access Methods • The information stored in the file can be accessed as follows: • Sequential Access • Direct Access Under direct access, a file is viewed as a sequence of blocks (or records) which are numbered. The records of a file can be read or written in any order using this number. The block number is relative to the beginning of the file. This relative number internally has an actual absolute disk address and this mapped by the file system. In direct access, the system calls for read and write operations are using the block number as parameter.

  29. Directory Structure To manage the data stored on a disk, the disk is divided into one more partitions also known as volumes and each partition contains information about the files in it. This information is stored in directory.

  30. Operations Performed on Directory • Search for a file • Create a file • Delete a file • List a directory • Rename a file • Traverse the file system • It is possible to have more than one operating system on a single disk, where a user can boot any of the operating system.

  31. Organize the Directory (Logically) to Obtain • Efficiency – locating a file quickly • Naming – convenient to users • Two users can have same name for different files • Grouping – logical grouping of files by properties, (e.g., all Java programs, all games, …)

  32. Single-Level Directory • A single directory for all users Naming problem – No two files can have the same name. Grouping problem – Only one directory is available for all users.

  33. Two-Level Directory • Separate directory for each user (MFD, UFD) • Path name • Can have the same file name for different user • Efficient searching • No grouping capability

  34. Tree-Structured Directories

  35. Protection The information stored in a system requires to be protected from the physical damage and unauthorized access. A file system can be damaged due to various reasons such as, a system breakdown, theft, fire, lightning or any other nature calamities.

  36. Protection When the physical damage is irreversible, the data can be lost permanently. Physical damage to a system is unavoidable, we must take proper measures to safeguard and protect the data. Protection can be provided by storing a copy of information on the disk to the disk itself, or to some other removable storage media.

  37. Protection Apart, from protecting the file from physical damage, the file in a system also needs a protection mechanism to control improper access. In a multi-user system, one user can access files of other users, and the system is prone to improper access. A protection mechanism is necessary in such a situation.

  38. Types of Access Different access rights that can be assigned to a particular user for a particular file are: • Read – Allow only reading the file. • Write – Allow write or rewriting the file. • Execute – Allow running the program or application. • Append – Allow writing new information at the end of file. • Copy – Allow creating a new copy of the file. • Rename – Allow renaming a file. • Edit – Allow adding or deleting information from the file. • Delete – Allow deleting the file and releasing the space.

  39. Access Control Access control is to protect the file from improper accesses. • Password • Access Control List (ACL) To resolve the problems associated with ACL, the users can be categorized as: • Owner • Group • Universe

  40. File System Structure File system helps to organize, manage and retrieve data on the disk. The file system resides permanently on the disk. Two key issues in the design of file system: • Defining a file and attributes, operations that can be performed on a file and the directory structure. • Creating data structures and algorithms for mapping the logical file system into the secondary storage device.

  41. File System Layers

More Related