the following code lists files but not directories
var
rec : tsearchrec;
begin
findfirst('c:\test\*',faanyfile-fadirectory,rec);
showmessage(rec.Name);
if findnext(rec) <> 0 then close else
showmessage (rec.Name);
end;
|
|
|
|
|
|
||||||||||||||
|
|
|
What about findfirst('c:\test\*', faanyfile, rec); // not faanyfile-fadirectory |
|||
|
|
|
|
You explicitly excluded directories by stating " - faDirectory" in the flags parameter. |
||
|
|
|
|
If you want all files and directories, just pass in faDirectory to findfirst. It's going to already return you files. |
||||||||||
|
faDirectory? What do you want it to do instead? – Rob Kennedy Sep 25 at 19:20