_findclose
關閉指定的搜尋控制代碼並釋放相關聯的資源。
int _findclose(
intptr_t handle
);
參數
- handle
搜尋上一個呼叫傳回的 _findfirst的控制代碼。
傳回值
如果成功,_findclose 會傳回 0。 否則,它會傳回– 1 並將 errno 設定為 ENOENT,表示找不到任何相符的檔案。
需求
功能 |
必要的標頭 |
---|---|
_findclose |
<io.h> |
如需更多關於相容性的資訊,請參閱入門介紹中的 相容性 (Compatibility) 。
.NET Framework 對等用法
不適用。若要呼叫標準 C 函式,請使用 PInvoke。如需詳細資訊,請參閱平台叫用範例。