fpc/tests/tbs/tb0559.pp
Jonas Maebe 99a02a93ca * also consider the search attributes for findfirst if the name does
not contain wildcards + test
  * don't return true from FindGetFileInfo if the file name is ok, but the
    search attributes don't match (resulted in returning multiple times the
    name of the previous entry that did fulfill all requirements)

git-svn-id: trunk@13074 -
2009-05-01 16:03:56 +00:00

13 lines
161 B
ObjectPascal

uses
SysUtils;
var
Info: TSearchRec;
begin
// should not match, is a directory
if FindFirst('..',faArchive,Info)=0 then
halt(1);
FindClose(Info);
end.