Finding Next Cluster
After reading the current cluster, how can we advance to the next cluster?
Answer: by checking the FAT table. With the current cluster number, we can get the next cluster in FAT, or a EOF.
How can we know the terminating condition? There are three conditions in total. If we encounter these during search, that means it reaches the end.
End of File
EOF
(0x0ffffff8)
Damaged (Bad Cluster Mark) (0x0ffffff7)
Unallocated (0x0)
Last updated
Was this helpful?