Thema
:
Delphi
Ordnernamen in Listbox laden
Einzelnen Beitrag anzeigen
toms
(CodeLib-Manager)
Registriert seit: 10. Jun 2002
4.648 Beiträge
Delphi XE Professional
#
14
Re: Ordnernamen in Listbox laden
13. Jan 2009, 23:07
Zitat von
cyanroot
:
Und das geht wie?
.
zusammenfalten
·
markieren
Delphi-Quellcode:
procedure
ListDirectory(Strings: TStrings;
const
Path:
string
);
var
S: TSearchRec;
begin
if
FindFirst(Path, faDirectory, S) = 0
then
begin
repeat
if
((S.Attr
and
faDirectory) = faDirectory)
and
(s.
Name
<> '
.
')
and
(s.
Name
<> '
..
')
then
Strings.Add(S.
Name
);
until
FindNext(S) <> 0;
FindClose(S);
end
;
end
;
procedure
TForm1.Button1Click(Sender: TObject);
begin
ListDirectory(ListBox1.Items, '
C:\*.*
');
end
;
Thomas
Zitat
toms
Öffentliches Profil ansehen
Mehr Beiträge von toms finden