遍历文件夹中的所有文件

struct _finddata_t FileInfo;
long hanle=0l;

char file_path[133]="";

 

if((hanle=_findfirst(file_path,&FileInfo))==-1L)
 {
  uc1601("没有找到匹配的文件类型!",1);
  return 0;
 }
 else
 {
  while(!_findnext(hanle,&FileInfo))
  {

   ……
   num_found++;    
  }

   ……
  num_found=num_found+1;
 }
 _findclose(hanle);

你可能感兴趣的:(遍历文件夹文件)