findfirst, findnext

findfirst, findnext ,計算機函式名,用於搜尋磁碟目錄,取得下一個匹配的findfirst模式的檔案。

解釋

函式名: 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;
}

相關詞條

相關搜尋

熱門詞條

聯絡我們