System.SysUtils.FindNext

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function FindNext(var F: TSearchRec): Integer;

C++

extern DELPHI_PACKAGE int __fastcall FindNext(TSearchRec &F);

Properties

Type Visibility Source Unit Parent
function public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

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.

See Also


Code Examples