The meanings of several of the fields in the FCB differ between CP/M and MS-DOS, and also depending on what operation is being performed. The following fields have consistent meanings:
| Offset | Size | Contents |
|---|---|---|
| 00 | Byte | Drive number — 0 for default, 1 for A:, 2 for B:,... |
| 01 | 8 bytes | File name and file type — together these form a 8.3 file name |
| 09 | 3 bytes | |
| 0C | 20 bytes | Implementation dependent — should be initialised to zero before the FCB is opened. |
| 20 | 1 byte | Record number in the current section of the file — used when performing sequential access. |
| 21 | 3 bytes | Record number to use when performing random access. |
FCBs were supported in all versions of MS-DOS and Windows until the introduction of the FAT32 filesystem. Windows 95, Windows 98 and Windows Me do not support the use of FCBs on FAT32 drives, except to read the volume label. This caused some old DOS applications, including Wordstar, to fail under these versions of Windows.
The FCB interface does not work properly on Windows NT, 2000, etc either - WordStar does not function properly on these operating systems. The emulator DOSEMU implements the FCB interface properly, and is one way to run older programs.