用CFileFind类实现的目录树遍历

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow

也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!

               

作者:崔晓亮

目录树遍历顾名思义就是把目录树中所有的目录及文件依次查找一遍,WINDOWS里的文件查找程序和
  SafeClean Utilities(环保卫士)等都用到了目录树遍历。我们当然也可以在自己的程序中加入这一功能。
  下面就是该算法的源代码。代码不长,应该很好懂。大家只要在工程中添加一个 Search 类再将代码拷贝
  到文件中就可以了。调用时用如下代码: Search find("c:/", "*.exe"); find.Start(); 按 F5 运行后
  可以在调试信息窗口看到输出,如有不妥之处还望各位来信指教。
  一、文件 Search.h
  // Search.h: interface for the Search class. //   ...
  class Search
  {
  public:
  Search(CString strFilePath, CString strFileName);
  void Start();
  virtual ~Search();
  private:
  void Run();
  char m_szOldDir[MAX_PATH]; // 遍历前的起始目录
  CString m_strFileName;
  };

  二、文件 Search.cpp
  // Search.cpp: implementation of the Search class.
  #include "stdafx.h"
  #include "Search.h"
  #include "direct.h"
  Search::Search(CString strFilePath, CString strFileName)
  {
  getcwd(m_szOldDir, MAX_PATH); // 保存遍历前的起始目录
  if(chdir((LPCTSTR)strFilePath) == -1) // 进入指定目录
  AfxMessageBox("路径错误");
  m_strFileName = strFileName;
  } //---------------------------------------------------------------------

  void Search::Start()
  {
  BOOL ans;
  CFileFind find;
  Run(); // 在每一个目录下执行自定义的操作
  ans = find.FindFile("*.*");
  while(ans)
  {
  ans = find.FindNextFile(); // 查找下一个文件
  // 查找到的如果是目录并且不是 . 或 ..
  if((find.IsDirectory() == TRUE) && (find.IsDots() != TRUE))
  {
  chdir((LPCTSTR)find.GetFilePath()); // 如果是目录则进入继续查找
  Start(); // 递归调用
  chdir(".."); // 返回后回到上一层目录继续查找
  }
  } // End of while
  find.Close();
  return;
  } //---------------------------------------------------------------------

  Search::~Search() { chdir(m_szOldDir); // 返回遍历前的起始目录 }

  //---------------------------------------------------------------------
  void Search::Run()
  {
  BOOL run_ans;
  CFileFind run_find; // m_strFileName 就是 Search 构造函数的第二个参数
  run_ans = run_find.FindFile(m_strFileName);
  while(run_ans)
  {
  run_ans = run_find.FindNextFile();
  if(!run_find.IsDots())
  { // TODO: 请在这里添加你的代码
  TRACE("/n%s", run_find.GetFilePath());
  }
  }
  run_find.Close();
  return;
  }

           

给我老师的人工智能教程打call!http://blog.csdn.net/jiangjunshow
这里写图片描述
/** ===================================================== 功能: CFolderContent搜索一个目录, 列出该目录下的所有目录名称,列出所有子目录下的文件名称等属性。 作者: jef 作者邮箱: dungeonsnd@126.com 发步时间: 20100311 版本: v1.1 版权: 请遵循GNU. 对外接口: int GetAllSub(CString csPath) csPath: 一个目录或者一个完整的文件名 使用举例: void CGetFolderContentView::OnLButtonDown(UINT nFlags, CPoint point) { // TODO: Add your message handler code here and/or call default CString cs,csSaveFileName,csFileSave,csT,csT1; cs ="C:\\Documents and Settings\\All Users\\Documents\\My Music"; char chModule[8192]; memset(chModule,0,8192); GetModuleFileName(NULL,chModule,8192); csT.Format("%s",chModule); csT =csT.Left( csT.ReverseFind(_T('\\')) ); csSaveFileName =csT+_T("\\FolderContent输出文件.txt"); CRect rtClient; GetClientRect(&rtClient); CClientDC dc(this); dc.SetTextColor(RGB(200,80,80)); dc.FillSolidRect(rtClient,RGB(240,240,240)); CFolderContent fc; fc.GetAllSub(cs); int i,len,k; csT ="-------"; csT =cs+"总大小为"; csT1.Format(" %.4fMB,清单文件已保存在 %s",fc.m_dTotalSize/double(1024*1024),csSaveFileName); csT +=csT1; csT +="-------"; dc.TextOut(5,0,csT); csFileSave +=csT+_T("\r\n"); csT ="-------"; csT +="所有子目录如下:"; csT +="-------"; dc.TextOut(5,25,csT); csFileSave +=csT+_T("\r\n"); len =fc.m_Directory.GetSize(); for (i=0;i<len;i++) { csT.Format(" 大小:%.4fMB",fc.m_vecDirectorySize[i]/double(1024*1024)); csT1.Format(" 创建时间:%d年%d月%d日 ", fc.m_vecFileLastCreationTime[i].wYear, fc.m_vecFileLastCreationTime[i].wMonth, fc.m_vecFileLastCreationTime[i].wDay); csT =csT+csT1; csT =fc.m_Directory.GetAt(i)+csT; dc.TextOut(5,(i+2)*20,csT); csFileSave +=csT+_T("\r\n"); } k =i; csT ="-------"; csT +="所有文件如下:"; csT +="-------"; dc.TextOut(5,(k+3)*20,csT); csFileSave +=csT+_T("\r\n"); len =fc.m_PathNameExt.GetSize(); for (i=0;i<len;i++) { csT.Format(" 大小:%.4fMB",fc.m_vecFileSize[i]/double(1024*1024)); csT1.Format(" 修改时间:%d年%d月%d日 ", fc.m_vecFileLastWriteTime[i].wYear, fc.m_vecFile
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值