#include "iostream.h"
int main(int argc, char* argv[])
{
if( SetCurrentDirectory("F://software") == TRUE)
{
CFileFind finder;
BOOL bRun= finder.FindFile("*.*");
while (bRun)
{
bRun = finder.FindNextFile();
cout << (LPCTSTR) finder.GetFilePath()<<"/t";
cout << (LPCTSTR) finder.GetFileName() << endl;
}
}
return 0;
}