struct CFileStatus
{
CTime m_ctime;
CTime m_mtime;
CTime m_atime;
LONG m_size;
BYTE m_attribute;
TCHAR m_szFullName[_MAX_PATH];
};m_attribute 
The attribute byte of the file. This is the logical OR of the following enumerated values. 
enum Attribute { normal,
readOnly,
hidden,
system,
volume,
directory,
archive
};改变m_attribute只能改变文件的只读属性,而当m_attribute为directory时,该怎么办?