-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
18 lines (15 loc) · 882 Bytes
/
Copy pathREADME
File metadata and controls
18 lines (15 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
This directory contains a partial implementation of the simple file
system for project 4. The partial implementation is in
LibFS.c; it's heavily commented code so hopefully the implementation
is self-explanatory. The places marked as YOUR CODE are to be filled
in by your implementation.
NOTE THAT THE IMPLEMENTATION PROVIDED HERE IS PURELY DESIGNED TO HELP
YOU COMPLETE THE TASK. YOU DO NOT HAVE TO FOLLOW THE IMPLEMENTATION.
BUT IF YOU DO, PAY ATTENTION TO THE DETAILS. THERE IS NOT GUARANTEE
THAT THE PROVIDED PARTIAL IMPLEMENTATION IS BUG-FREE CODE OR CONSIDERS
ALL POSSIBLE SCENARIOS.
The directory also contains a number of test applications implmement
file system commands, including ls, mkdir, cat, rm, rmdir. The touch
command is to create an empty file. The import and export commands
used for copying a unix file into and out from our simple file system.
Enjoy coding!