프로그래밍 언어/Delphi
[Reference] System.SysUtils.FindNext
얗마
2017. 2. 25. 09:25
Delphi
function FindNext(var F: TSearchRec): Integer;
C++
extern PACKAGE int __fastcall FindNext(TSearchRec &F);
Properties
Type |
Visibility |
Source |
Unit |
Parent |
function |
public |
System.SysUtils.pas System.SysUtils.hpp |
Description
Returns the next entry matching the name and attributes specified in a previous call to FindFirst.
FindNext returns the next entry that matches the name and attributes specified in a previous call to FindFirst.
The search record must be one that was passed to FindFirst.
The return value is zero if the function was successful.
Otherwise the return value is an error code.
FindFirst에 대한 이전 호출에서 지정된 이름 및 속성과 일치하는 다음 항목을 반환합니다.
FindNext는 FindFirst에 대한 이전 호출에서 지정된 이름 및 속성과 일치하는 다음 항목을 반환합니다.
검색 레코드는 FindFirst에 전달된 하나의 레코드여야 합니다.
함수가 성공하면 반환 값은 0입니다.
그렇지 않으면 리턴 값은 오류 코드입니다.