#include <nitro/fs.h>static inline BOOL FS_IsDir(volatile const FSFile *p_file);This determines whether directory position information is currently stored in the specified file.
Directory position information is stored by the FS_FindDir function and the FS_SeekDir function.
It is destroyed by the FS_OpenFile function, the FS_OpenFileFast function, and the FS_CloseFile function.
p_file |
The FSFile structure's address |
If the file stores directory position information, it returns TRUE. Otherwise it returns FALSE.
FSFile,
FS_FindDir,
FS_SeekDir
05/14/2004 Initial Version