Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 426 Bytes

README.md

File metadata and controls

7 lines (6 loc) · 426 Bytes

University project within the curse Operating Systems 2

Simple File System (FS)

  • FS that works with one partition and multiple clients
  • Using bit vector for allocation and indexed sequential file organization (2 levels)
  • Realized functions within FS:  mounting a file system, formatting a new file system, creating files(opening files), reading and writing into files, etc
  • Used C++ language to build the solution