/SO2021

SO 2020/2021 - IST LEIC-A

Primary LanguageC

SO2021

Context

3 project exercises assigned from SO (Operating Systems) in the first semester of 2020/2021 (IST).

Goal

Develop a user-level File System that keeps its contents in primary memory - TecnicoFS.

Usage

c -> create file or directory
l -> lookup i-node
d -> delete i-node
m -> move i-node

Examples

c /a f -> creates file a on root
c /b d -> creates directory b on root
c /c f -> creates file c on root
l /a -> searches for i-node associated to given path
d /a -> deletes i-node a
m /c /b/c -> moves i-node /c from root to directory /b