SFS(Secure file System) banner

SFS(Secure file System)

9 devlogs
33h 6m 1s

This is a file system that I made : 3

This is mostly in the background
This does not work on windows(it is a FUSE file system and unless you want to screw around with WSL you can’t mount it )

Demo Repository

Loading README...

Cyclic(John fire department) not FD

I implemented
Mkdir
readdir
read
write

The creation of mkdir and write took forever and mkdir is made of about 10 other functions I made because defining these things is hard
also the longer I spend on this project the longer my function names become and the harder it becomes to comprehend my one liners

Attachment
0
Cyclic(John fire department) not FD

Finally actually implementing the functions

I have implemented the following:
chown
chmod
truncate
init
access (as a shell needs full impl)
open
opendir
release
releasedir

Attachment
0
Cyclic(John fire department) not FD

I spent about 5 hours screwing about with data types and trying to make my block structs and types into each other and finally have a “working” test environment

Attachment
0
Cyclic(John fire department) not FD

I have setup the basic types with my blocks where this will not use Inodes beacuse eww
This uses a system of start blocks where it is effectively a tree to taverse to get files

Attachment
0