The CFileStatus structure is used by the CFile::GetStatus function to retrieve status information about a file.
struct CFileStatus
{
CTime m_ctime;
CTime m_mtime;
CTime m_atime;
LONG m_size;
BYTE m_attribute;
TCHAR m_szFullName[_MAX_PATH];
};
Header File | Afx.h |
Platforms | |
Versions | 1.0 and later |
enum Attribute {
normal,
readOnly,
hidden,
system,
volume,
directory,
archive
};