From 8e5d00ff3a3373d69bba74efa1edfd581cff5170 Mon Sep 17 00:00:00 2001 From: dsiders Date: Thu, 10 Mar 2022 18:43:34 +0000 Subject: [PATCH] Docs: LazUtils/fileutil. Updates topic content and links. --- docs/xml/lazutils/fileutil.xml | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/docs/xml/lazutils/fileutil.xml b/docs/xml/lazutils/fileutil.xml index 42b72a9e5c..61860e595f 100644 --- a/docs/xml/lazutils/fileutil.xml +++ b/docs/xml/lazutils/fileutil.xml @@ -1377,8 +1377,19 @@ AResult := FindDiskFileName(AFileName); Performs actions required to add a file name to the list of matches for the file searcher. - - + +

+ DoFileFound is an overridden method in TListFileSearcher. It adds the current value from the FileName property to the internal TStrings member maintained in the class instance. The inherited method is called prior to exit to signal the OnFileFound event handler (when assigned). +

+

+ DoFileFound is called from the Search method when a file on the local file system is located that matches a given mask. +

+
+ + + + + @@ -1417,8 +1428,19 @@ AResult := FindDiskFileName(AFileName); Performs actions needed to add a directory path to the list of matches for the searcher. - - + +

+ DoDirectoryFound is an overridden method in TListDirectoriesSearcher. It adds the current value from the FileName property to the internal TStrings member used in the class instance. The inherited method is called prior to exit to signal the OnDirectoryFound event handler (when assigned). +

+

+ DoDirectoryFound is called from the Search method when a directory on the local file system is located that matches a given mask. +

+
+ + + + +