Skip to content

iit-students-charity/AmoFS

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AmoFS

Overview

This project presents the simplest implementation of a single-level file system with linked blocks.

Implementation

The Filesystem was written with stl-containers. For the list of files in filesystem std::set was used. To implement a linked list of blocks inside the file, std::list was used. Each block contains information in std::vector.

How to build and run

On linux you can do the following

cmake -B build
cd build
make
./AmoFS

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 98.7%
  • CMake 1.3%