MFC获取整个文件夹的大小 //获取整个文件夹的大小 double CEvent::GetDirSize(CString strFullPath) { double dwDirSize,dwSubDirSize; CFileFind finder; dwDirSize=dwSubDirSize=0; strFullPath+=_T(“\\*.*”); if(finder.FindFile(strFullPath)) { while(1) { BOOL bFound; bFound=finder.FindNextFile(); if (finder.IsDirectory()) { if (!f
Read more月度归档: 2018年10月
MFC获取整个文件夹的大小
mfc CPtrList的使用遍历
自己写原始的一个链表,还是很麻烦的,mfc是有一个很好用的类的。就是CPtrList,他就是存储多个指针的。 CPtrList添加指针,pItem是一个指针: m_pSubjectItemList.AddTail(pItem); CPtrList的遍历方法如下: POSITION pos = m_pSubjectItemList.GetHeadPosition(); while (pos != NULL) { CSubjectItem * pOne = (CSubjectItem * )m_pSubjectItemList.GetNext(pos); if (pOne != NU
Read more
自己写原始的一个链表,还是很麻烦的,mfc是有一个很好用的类的。就是CPtrList,他就是存储多个指针的。 CPtrList添加指针,pItem是一个指针: m_pSubjectItemList.AddTail(pItem); CPtrList的遍历方法如下: POSITION pos = m_pSubjectItemList.GetHeadPosition(); while (pos != NULL) { CSubjectItem * pOne = (CSubjectItem * )m_pSubjectItemList.GetNext(pos); if (pOne != NU
Read more