| [Overview][Constants][Types][Classes][Procedures and functions][Index] |
Returns the list of found files in the specified path according to passed options.
Source position: fileutil.pas line 181
function FindAllFiles( |
const SearchPath: string; |
SearchMask: string = ''; |
SearchSubDirs: Boolean = True; |
DirAttr: Word = faDirectory |
):TStringList; overload; |
AList: TStrings; |
const SearchPath: string; |
SearchMask: string = ''; |
SearchSubDirs: Boolean = True; |
DirAttr: Word = faDirectory |
); overload; |
SearchPath |
|
Base path for searching files. |
SearchMask |
|
A list of masks, separated by a semicolon (;) to which found files should match. |
SearchSubDirs |
|
If search recursively sub directories. |
List (TStringList) of found files. The StringList is instantiated by the FindAllFiles function, so you should not instatiate it before calling the function.
SearchPath |
|
Base path for searching files. |
SearchMask |
|
A list of masks, separated by a semicolon (;) to which found files should match. |
SearchSubDirs |
|
If search recursively sub directories. |
| lazarus-ccr.sourceforge.net |