[Overview][Constants][Types][Classes][Procedures and functions][Index] |
SearchAllFilesInPath - searches for all files named Filename in the given SearchPath using the supplied BasePath with the specified Delimiter and the options listed in Flags
Source position: fileutil.pas line 113
function SearchAllFilesInPath( |
const Filename: String; |
const BasePath: String; |
const SearchPath: String; |
const Delimiter: String; |
Flags: TSearchFileInPathFlags |
):TStrings; |
Filename |
|
The name of the file for searching |
BasePath |
|
The BasePath to be used for the search |
SearchPath |
|
The path for searching |
Delimiter |
|
The directory Delimiter to be used in the search |
Flags |
|
Flags specifying how to search: e.g. don't search in base path, case independent search |
Returns fully specified file names of all files that match the supplied criteria, or empty string if file not found
SearchAllFilesInPath - searches for all files named Filename in the given SearchPath using the supplied BasePath with the specified Delimiter and the options listed in Flags
Searches the whole path unless the sffDontSearchInBasePath flag is present
Returns all files that match the supplied criteria
lazarus-ccr.sourceforge.net |