nouvakis 0 Posted October 30, 2019 SelectCopyFileList ignores IgnorePaths below COMPILER10_UP. a workaround would be {$IFDEF COMPILER10_UP} { only supported D2006 and later } IgnorePathList.StrictDelimiter := True; IgnorePathList.DelimitedText := AnsiLowerCase (IgnorePaths) ; {$ELSE} IgnorePathList.DelimitedText := '"' + StringReplace(AnsiLowerCase(IgnorePaths), IgnorePathList.Delimiter, '"' + IgnorePathList.Delimiter + '"', [rfReplaceAll]) + '"'; {$ENDIF} Share this post Link to post
Angus Robertson 574 Posted October 30, 2019 Yes, I was being lazy and hoping no-one would use that feature on Delphi 7, I'll add your fix next week. Angus Share this post Link to post
nouvakis 0 Posted October 30, 2019 19 minutes ago, Angus Robertson said: Yes, I was being lazy and hoping no-one would use that feature on Delphi 7, I'll add your fix next week. Angus thanks a lot Share this post Link to post