解釋
函式名: findfirst, findnext功 能: 搜尋 磁碟目錄; 取得下一個匹配的 findfirst模式的 檔案
用 法: int findfirst(char *pathname, struct ffblk *ffblk, int attrib);
int findnext(struct ffblk *ffblk);
程式例
/* findnext example */#include
#include
int main(void)
{
struct ffblk ffblk;
int done;
printf("Directory listing of *.*\n");
done = findfirst("*.*",&ffblk,0);
while (!done)
{
printf(" %s\n", ffblk.ff_name);
done = findnext(&ffblk);
}
return 0;
}