VC/MFC 下 递归遍历目录下的所有子目录及文件

在MFC下要实现文件夹的递归遍历,可用CFileFind类,依次读取文件夹下的子文件夹和文件,并判断通过判断是文件夹还是文件来决定递归遍历。递归遍历代码如下:

/************************************************************************/
/* 遍历打包目录下的所有文件                                             */
/************************************************************************/
void CCopyFileCheckerDlg::FindFileInDir(CString rootDir)
{
	// 查找当前路径下的所有文件夹和文件
	CString strDir = rootDir;
	strDir += "\\*.*";

	// 遍历得到所有子文件夹名
	CFileFind finder; 
	BOOL bWorking = finder.FindFile(strDir);
	
	while (bWorking)  
	{  
		bWorking = finder.FindNextFile();
		if (finder.IsDirectory() && "." != finder.GetFileName() && ".." != finder.GetFileName())//注意该句需要排除“.”“..”
		{
			//递归调用
			if(finder.GetFileName() != L"源PE文件")
				FindFileInDir(finder.GetFilePath());
		}
		else
		{
			
			CString strFile = finder.GetFilePath();
			CString strFileName = finder.GetFileName();
			CString strFileExtension = GetFileExtension(strFileName);
			if(L"." != strFileName&&L".." != strFileName)
			{
				
				if(strFileExtension.CompareNoCase(L"exe") == 0 ||strFileExtension.CompareNoCase(L"dll")==0)
				{
					if(IsNeedCopy(strFileName,strFile))
					{
						m_nPEFileNum ++;
						INT nRow = m_listResult.InsertItem(m_nCount, strFile);//插入行
						m_listResult.SetItemText(nRow, 1, strFile);//设置数据
						m_listResult.SetCheck(nRow,TRUE);
						m_progress.SetPos(m_nCount);

					}
				}
			}
			
		}
	} 
	finder.Close();
}

  

转载于:https://www.cnblogs.com/JczmDeveloper/p/3571438.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值