Changeset 82 for trunk/NewView/GlobalSearchForm.pas
- Timestamp:
- Feb 25, 2007, 4:15:10 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NewView/GlobalSearchForm.pas
r43 r82 143 143 SysUtils, 144 144 DebugUnit, 145 ACLFileUtility,146 145 ACLDialogs, 147 146 ControlsUtility, … … 153 152 SearchDirectoriesFormUnit, 154 153 SettingsUnit, 155 InformationFormUnit; 154 InformationFormUnit, 155 FileUtilsUnit; 156 156 157 157 type … … 517 517 begin 518 518 Dir := StrLeftWithout( Dir, 3 ); 519 ListDirectoryRecursiveAdditive2( Dir, 519 ListFilesInDirectoryRecursiveWithTermination( 520 Dir, 520 521 '*.inf;*.hlp', 521 Dir, // want full paths522 522 Files, 523 nil, // don't care to know subdirs524 523 ThreadManager.StopRequested, 525 524 true ); // check termination … … 527 526 else 528 527 begin 529 ListDirectoryAdditive( Dir, 530 '*.inf;*.hlp', 531 Dir, // want full paths 532 Files, 533 nil ); // don't care to know subdirs 528 ListFilesInDirectory( Dir, 529 '*.inf;*.hlp', 530 Files); 534 531 end; 535 532 end;
Note:
See TracChangeset
for help on using the changeset viewer.