The VFAT File System Worksheet

Create the following filesystem.  Use the space below to make directory entries and fill in the FAT.  Note that in a real VFAT file system, there would be two fats, but I'm, only making you do one.  Make sure that disk blocks 3, 5, 12, and 16 are marked 'bad', using code 65536 (binary all 1's).  The Volume label for the disk is 'Main disk'
Problem #1
Directories Files Size
/ /autoexec.bat 1 cluster
/Program Files /Program Files/winfile.exe 8 clusters
/Program Files/temp /Program Files/temp/index.html 2 clusters
Problem #2
Directories Files Size
/ /Config/config.sys 1
/Config /Config/config.bak 2
/Dave's Stuff /Config/config.old (hidden file) 11

Directories

Name  Start Loc.  Size  Date Read-Only? Archived? Vol Label? System? Hidden? Directory?
autoexec.bat 1  1    n n  n  n  n  n 
progra~1  2  1    n  n  n  n  n  Y 
Program Fi        Y  Y  Y  Y  Y  Y 
les        Y  Y  Y  Y  Y  Y 
main disk        n  n  Y  n  n  n 
 
 
Name  Start Loc.  Size  Date Read-Only? Archived? Vol Label? System? Hidden? Directory?
winfile.exe  2  8    n  n  n  n  n  n 
temp  13 1   n  n  n  n  n  Y 
                   
                   
                   
Name  Start Loc.  Size  Date Read-Only? Archived? Vol Label? System? Hidden? Directory?
index.htm 14  2    n  n  n  n  n  n 
index.html        Y  Y  Y  Y  Y  n 
                   
                   
                   

The File Allocation Table
 
0  1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  16  17  18  19 
 9999  9999  4 65536  6  65536  7  8  9  10  11  9999  65536   9999  15 9999  65536       
Notes:
"/" is in block #0
"autoexec.bat" is in block #1
"/Program Files"is in block #2
"winfile.exe" is in blocks 2,4,6,7,8,9,10,11
"index.html" is in blocks 14, 15