In FAT entry, among other things we have the extension field.
What values are commonly used in the extension fields for directories? Google fails me.
feedback
|
|
As I recall (it's been a really long time), in FAT directory entries, the file (or directory) name is stored as simply 11 sequential characters. What was traditionally thought of as the file name was put in the first eight bytes, and the suffix in the last three, right-padding to the length of each part of the file name field. This was sometimes rendered by stripping the padding and inserting a period in the middle, AKA The description of File Control Blocks (FCBs) in Ralph Brown's interrupt list says the file name and suffix are "blank-padded", which apparently means space ( | |||||||||||
feedback
|
|
Typically? Nothing. (Spaces) Not that directories can't have extensions, it's just that most programs didn't use them. According to Wikipedia and this site: directory entry names were padded with blanks. Spaces. ASCII 0x20 (32). | ||||
feedback
|