当前位置导航:炫浪网>>网络学院>>编程开发>>C++教程>>Visual C++教程

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


 #include "stdafx.h"
#include "afx.h"
#include "iostream.h"
#include "winbase.h"

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

   DWORD returnValue;
   
   if( SetCurrentDirectory("D:\\Code\\POS") == 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;
}
相关内容
赞助商链接