Changeset 72 for trunk/Packages/Common/UFindFile.pas
- Timestamp:
- Mar 6, 2016, 12:10:38 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/UFindFile.pas
r59 r72 24 24 25 25 uses 26 SysUtils, Classes, Graphics, Controls, Forms, Dialogs , FileCtrl;26 SysUtils, Classes, Graphics, Controls, Forms, Dialogs; 27 27 28 28 type … … 116 116 if ffaAnyFile in FileAttr then Attr := Attr + faAnyFile; 117 117 118 if SysUtils.FindFirst( UTF8Decode(inPath + FileMask), Attr, Rec) = 0 then118 if SysUtils.FindFirst(inPath + FileMask, Attr, Rec) = 0 then 119 119 try 120 120 repeat … … 127 127 If not InSubFolders then Exit; 128 128 129 if SysUtils.FindFirst( UTF8Decode(inPath + '*.*'), faDirectory, Rec) = 0 then129 if SysUtils.FindFirst(inPath + '*.*', faDirectory, Rec) = 0 then 130 130 try 131 131 repeat
Note:
See TracChangeset
for help on using the changeset viewer.