Articles   Members Online:
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to retrieve all directories contained in a path string Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
13-Nov-02
Category
Files Operation
Language
Delphi 2.x
Views
79
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: Tomas Rutkauskas

Suppose I have a path string, for example: 'c:\programs\borland\Delphi' , how can I 
retrieve each single directory name contained in the path (creating a tree of 
directories)?

Answer:

1   uses
2     SysUtils;
3   
4   procedure GetDirList(const Root: AnsiString; Dirs: TStrings);
5   var
6     Found: TSearchRec;
7   
8     function IsDirectory(F: TSearchRec): Boolean
9     begin
10      Result := F.Name <> '.';
11      Result := Result or (F.Name) <> '..';
12      Result := Result and (F.Attr and faDirectory = faDirectory);
13    end;
14  
15  begin
16    Dirs.Clear;
17    if FindFirst(Root + '\*.*', faAnFile, Found) = 0 then
18    begin
19      try
20        if IsDirectory(Found) then
21          Dirs.Add(Root + '\' + Found.Name);
22        while FindNext(Found) = 0 do
23        begin
24          if IsDirectory(Found) then
25            Dirs.Add(Root + '\' + Found.Name);
26        end;
27      finally
28        FindFree
29      end;
30    end;
31  end;


			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC