The DIR structure is used for the work area to read a directory.
typedef struct _DIR {
DWORD sclust; // Directory start cluster
DWORD clust; // Current reading cluster
DWORD sect; // Current reading sector
WORD index; // Current index
} DIR;
typedef struct _DIR {
WORD sclust; // Directory start cluster
WORD clust; // Current reading cluster
DWORD sect; // Current reading sector
WORD index; // Current index
} DIR;