参考网上的代码,写的注释比较完整的代码。
例程如下,在article目录下,有若干文件和目录。
#include <stdio.h>
#include <windows.h>
void loopThrough(char* path,char* findType)
{
char currentPath[200],subPath[200];
WIN32_FIND_DATA findFileData;
HANDLE hFind;
sprintf(currentPath,"%s\\%s",path,findType);
//find first file or directory under path
hFind=FindFirstFile(currentPath,&findFileData);
if(hFind==INVALID_HANDLE_VALUE)
{
//first