Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.02 KB

File metadata and controls

32 lines (24 loc) · 1.02 KB

Virtual-File-System

#Technology: C Description:

The Virtual File system provides all the functionality to the user which is same as the UNIX based file system.

It provides all necessary commands and system calls implementations of file system through customised shell.

In this project we implement all necessary data structures of File Subsystem as Inode, Incore Inode Table, File Table, User File Descriptor Table etc.

By using this project we can emulate UNIX file system on any windows platform

Commands

ls      : To list out all files <br>
clear   : To clear console <br>
open    : To open the file <br>
close   : To close the file <br>
closeall: To close all opened files <br>
read    : To read the contents from file <br>
write   : To write contents into file <br>
exit    : To terminate file system <br>
stat    : To display information of file using name <br>
fstat   : To display information of file using file descriptor <br>
truncate: To remove all data from file <br>
rm      : To delete the file <br>