开发学院软件开发VC 怎样用VC++遍历某一目录下的所有文件 阅读

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

 2008-11-12 19:27:53 来源:WEB开发网   
核心提示:#include "stdafx.h"#include "afx.h"#include "iostream.h"#include "winbase.h"int main(int argc, char* argv[]){DWORD retur

#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;
}

Tags:怎样 VC 遍历

编辑录入:爽爽 [复制链接] [打 印]
[]
  • 好
  • 好的评价 如果觉得好,就请您
      0%(0)
  • 差
  • 差的评价 如果觉得差,就请您
      0%(0)
赞助商链接