怎样用VC++遍历某一目录下的所有文件

来源:网络时间:2011-08-04 15:03:40

  #include "stdafx.h"

  #include "afx.h"

  #include "ioStream.h"

  #include "winbase.h"

  int main(int argc, char* argv[])

  {

  Dword returnValue;

  if( SetCurrentDirectory("D:CodePOS") == TRUE)

  {

  CFileFind finder;

  BOOL bWorking = finder.FindFile("*.*");

  while (bWorking)

  {

  bWorking = finder.FindNextFile();

  //cout << (LPCTSTR) finder.GetFilePath();

  cout << (LPCTSTR) finder.GetFileName() << endl;

  }

  }

  else

  {

  returnValue = GetLastError();

  };

  return 0;

  }

文章内容来源于网络,不代表本站立场,若侵犯到您的权益,可联系我们删除。(本站为非盈利性质网站) 联系邮箱:9145908@qq.com
多特网友 2012-04-23 17:40:13 回复
头文件呢?
多特网友 2012-04-23 17:34:04 回复
如何在vc2008中
多特网友 2012-04-23 17:34:04 回复
如何在vc2008中
多特网友 2012-04-23 17:40:13 回复
头文件呢?