vote up 0 vote down star

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;
flag

0% accept rate
And the problem is.... – utku_karatas Sep 25 at 16:55
its just listing files not directories – omair iqbal Sep 25 at 16:59
and i put ''/*'' after c:/test but stackoverflow is not registering it i think something wrong with their server – omair iqbal Sep 25 at 17:05
Use "\\*" to display "\*". (even in comments - oh man!) – utku_karatas Sep 25 at 17:16
1  
Omair, so what? What did you expect it to do when you subtracted faDirectory? What do you want it to do instead? – Rob Kennedy Sep 25 at 19:20

4 Answers

vote up 13 vote down
  1. You need to NOT exclude the directories, which you unfortunately do with your (-faDirectory)
  2. You have to call FindClose when you're done.
  3. You need to loop if you want to find everything in the directory
var
 rec : tsearchrec;
begin
  if FindFirst('c:\*', faAnyFile, rec) = 0 then
  begin
    repeat
      ShowMessage(rec.Name);
    until FindNext(rec) <> 0;
    FindClose(rec);
  end;
end;
link|flag
thanks, it is showing directories now but one more problem it is returning '..' and '.' in showmessage as well as files and folders, what are they i switched ''show hidden files option on'' but still cant see any '.' and '..' please help! – omair iqbal Sep 26 at 6:26
also i tried to show 'just directories' using '-faanyfile or fadirectory' in the attributes constant so than it does not show any files but just directory but it is still returning files – omair iqbal Sep 26 at 6:36
2  
Omair, "." and ".." are directory entries, just like any other directory entry. You simply have to make sure your code can handle them. Also, you've probably realized that FirstFirst isn't very good at excluding results. Common practice is to use FindFirst and FindNext to enumerate all files and directories, and then check for the criteria you need in your own code and skip the ones you don't want. – Rob Kennedy Sep 26 at 7:30
but what are '.' and '..' for? are they directories and if they are why cant i access them even from command prompt? 2.is there a good alternative to findfirst?.3. while i dont know c++ does c++ have a good findfirst like function that is better at excluding results? – omair iqbal Sep 26 at 16:29
1  
@Omair: "." is an alias for the current directory and ".." is the parent directory. If you type "cd .." at the command prompt, you will move from the current directory to its parent. – Bruce McGee Sep 26 at 17:21
show 3 more comments
vote up 2 vote down

What about findfirst('c:\test\*', faanyfile, rec); // not faanyfile-fadirectory

link|flag
vote up 2 vote down

You explicitly excluded directories by stating " - faDirectory" in the flags parameter.

link|flag
vote up -1 vote down

If you want all files and directories, just pass in faDirectory to findfirst. It's going to already return you files.

link|flag
2  
And hope that it will never get fixed and return only directories as expected... – Smasher Sep 26 at 8:03
I'm just going based on the voluminous documentation that's out there. – Joe Sep 26 at 11:10
1  
But why would you pass faDirectory when you can just pass faAnyFile, even if you can rely on the fact that this won't change? That's just not readable. – Smasher Sep 26 at 18:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.