共用方式為


_findfirst_findfirst32_findfirst32i64_findfirst64_findfirst64i32_findfirsti64_wfindfirst_wfindfirst32_wfindfirst32i64_wfindfirst64、、、 _wfindfirst64i32_wfindfirsti64

提供檔名第一個執行個體的資訊,此檔名與 filespec 引數中所指定的檔案相符。

語法

intptr_t _findfirst(
   const char *filespec,
   struct _finddata_t *fileinfo
);
intptr_t _findfirst32(
   const char *filespec,
   struct _finddata32_t *fileinfo
);
intptr_t _findfirst64(
   const char *filespec,
   struct _finddata64_t *fileinfo
);
intptr_t _findfirsti64(
   const char *filespec,
   struct _finddatai64_t *fileinfo
);
intptr_t _findfirst32i64(
   const char *filespec,
   struct _finddata32i64_t *fileinfo
);
intptr_t _findfirst64i32(
   const char *filespec,
   struct _finddata64i32_t *fileinfo
);
intptr_t _wfindfirst(
   const wchar_t *filespec,
   struct _wfinddata_t *fileinfo
);
intptr_t _wfindfirst32(
   const wchar_t *filespec,
   struct _wfinddata32_t *fileinfo
);
intptr_t _wfindfirst64(
   const wchar_t *filespec,
   struct _wfinddata64_t *fileinfo
);
intptr_t _wfindfirsti64(
   const wchar_t *filespec,
   struct _wfinddatai64_t *fileinfo
);
intptr_t _wfindfirst32i64(
   const wchar_t *filespec,
   struct _wfinddata32i64_t *fileinfo
);
intptr_t _wfindfirst64i32(
   const wchar_t *filespec,
   struct _wfinddata64i32_t *fileinfo
);

參數

filespec
目標檔案規格 (可以包含萬用字元)。

fileinfo
檔案資訊緩衝區。 如需結構的詳細資訊fileinfo,請參閱檔名搜尋函式中的和<數據類型對應>。 結構定義於與函式相同的頭檔中,而函式會使用它們做為參數。

傳回值

如果成功, _findfirst 會傳回唯一的搜尋句柄,識別符合 filespec 規格的檔案或檔案群組,這可用於後續對 _findnext_findclose的呼叫。 否則, _findfirst 會傳回 -1,並將 設定 errno 為下列其中一個值。

errno 值 Condition
EINVAL 參數無效:filespecfileinfoNULL。 或者,作業系統傳回未預期的錯誤。
ENOENT 無法比對的檔案規格。
ENOMEM 記憶體不足。
EINVAL 檔名規格無效,或指定的檔名大於 MAX_PATH

如需這些傳回碼和其他傳回碼的詳細資訊,請參閱errno_sys_errlist_doserrno_sys_nerr

如果傳入無效的參數,這些函式會叫用無效的參數處理程式,如參數驗證中所述

備註

您必須在完成 _findfirst_findnext 函式之後呼叫 _findclose ,或函式(或任何變體)提供成功_findfirst呼叫。 _findclose 釋放應用程式中這些函式所使用的資源。 在無效的句柄上呼叫 _findclose 會傳 -1 回 ,並將 設定 errnoEINVAL

具有 w 前置詞的這些函式的變化是寬字元版本;否則,它們與對應的單一位元組函式相同。

這些函式的變化支援 32 位元或 64 位元時間類型,以及 32 位元或 64 位元檔案大小。 第一個數值尾碼 (3264) 表示時間類型的大小;第二個尾碼為 i32i64,並且表示檔案大小是以 32 位元還是 64 位元整數表示。 如需支援 32 位元和 64 位元時間類型與檔案大小之版本的資訊,請參閱下表。 i32如果 或後綴與時間類型的大小相同,則省略 或 i64 後綴,因此_findfirst64也支援 64 位檔案長度,且_findfirst32僅支援 32 位檔案長度。

這些函式針對 fileinfo 參數使用各種形式的 _finddata_t 結構。 如需 結構的詳細資訊,請參閱 檔名搜尋函式

使用 64 位元時間類型的變化可將檔案建立日期最高表示為 3000 年 12 月 31 日 23:59:59 UTC。 使用 32 位時間類型的日期,僅代表 2038 年 1 月 18 日 23:59:59、UTC。 1970 年 1 月 1 日午夜是所有這些函式的日期範圍下限。

除非您有特定原因要使用明確指定時間大小的版本,否則請使用 _findfirst_wfindfirst,或者,如果您需要支援大於 3 GB 的檔案大小,請使用 _findfirsti64_wfindfirsti64。 所有這些函式都使用 64 位元時間類型。 在舊版本中,這些函式都是使用 32 位元時間類型。 如果這項變更是應用程式的中斷性變更,您可能會定義 _USE_32BIT_TIME_T 還原成舊的行為。 如果定義 _USE_32BIT_TIME_T_findfirst_findfirsti64 和其對應的 Unicode 版本會使用 32 位元時間。

根據預設,此函式的全域狀態會限定於應用程式。 若要變更此行為,請參閱 CRT 中的全域狀態

_findfirst 的時間類型和檔案長度類型變化

函式 已定義 _USE_32BIT_TIME_T 嗎? 時間類型 檔案長度類型
_findfirst, _wfindfirst 未定義 64 位元 32 位元
_findfirst, _wfindfirst 已定義 32 位元 32 位元
_findfirst32, _wfindfirst32 不會受到巨集定義的影響 32 位元 32 位元
_findfirst64, _wfindfirst64 不會受到巨集定義的影響 64 位元 64 位元
_findfirsti64, _wfindfirsti64 未定義 64 位元 64 位元
_findfirsti64, _wfindfirsti64 已定義 32 位元 64 位元
_findfirst32i64, _wfindfirst32i64 不會受到巨集定義的影響 32 位元 64 位元
_findfirst64i32, _wfindfirst64i32 不會受到巨集定義的影響 64 位元 32 位元

一般文字常式對應

Tchar.h 常式 _UNICODE_MBCS 未定義 _MBCS 已定義 _UNICODE 已定義
_tfindfirst _findfirst _findfirst _wfindfirst
_tfindfirst32 _findfirst32 _findfirst32 _wfindfirst32
_tfindfirst64 _findfirst64 _findfirst64 _wfindfirst64
_tfindfirsti64 _findfirsti64 _findfirsti64 _wfindfirsti64
_tfindfirst32i64 _findfirst32i64 _findfirst32i64 _wfindfirst32i64
_tfindfirst64i32 _findfirst64i32 _findfirst64i32 _wfindfirst64i32

需求

函式 必要的標頭
_findfirst <io.h>
_findfirst32 <io.h>
_findfirst64 <io.h>
_findfirsti64 <io.h>
_findfirst32i64 <io.h>
_findfirst64i32 <io.h>
_wfindfirst <io.h><wchar.h>
_wfindfirst32 <io.h><wchar.h>
_wfindfirst64 <io.h><wchar.h>
_wfindfirsti64 <io.h><wchar.h>
_wfindfirst32i64 <io.h><wchar.h>
_wfindfirst64i32 <io.h><wchar.h>

如需相容性詳細資訊,請參閱相容性

另請參閱

系統呼叫
檔名搜尋函式