![]() |
Re: Findfirst,Findnext schulung
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var Rec: TSearchRec; begin if FindFirst('C:\Windows\*.ini',faAnyFile,Rec) = 0 then//da eins gefunden = 0 begin repeat ListBox1.Items.Add(Format('%s -> %d KB',[Rec.Name,Rec.Size div 1024])); until FindNext(Rec) <> 0; //wenn nichts gefunden dann 1 also schließen FindClose(Rec); end; end; |
Re: Findfirst,Findnext schulung
ahh
und alles was ich jetzt über die dateien wissen will muss einfach mit einem komma hinten dran gehäng werden?? |
Re: Findfirst,Findnext schulung
Z.B. Allerdings würde ich hier eine Listview mit ViewStyle vsReport bevorzugen ;)
|
Re: Findfirst,Findnext schulung
das heisst
wenn ich das so schreibe
Delphi-Quellcode:
bekomme ich als Rec.Attr eine 32 und das ist dann eine archive datei????
procedure TForm1.Button1Click(Sender: TObject);
var Rec: TSearchRec; begin if FindFirst('C:\Windows\*.ini',faAnyFile,Rec) = 0 then//da eins gefunden = 0 begin repeat ListBox1.Items.Add(Format('%s -> %d KB %d',[Rec.Name,Rec.Size div 1024,Rec.Attr])); until FindNext(Rec) <> 0; //wenn nichts gefunden dann 1 also schließen FindClose(Rec); end; end; |
Re: Findfirst,Findnext schulung
Richtig, u.zw. nur Archiv ohne weitere Attribute.
|
Re: Findfirst,Findnext schulung
Du könntest das z.B. so darstellen (nur ein Vorschlag):
Delphi-Quellcode:
Eingabeparameter ist dann Rec.Attr ;)
function AttrToChars(Attr: integer): string;
begin Result := ''; if (Attr and faDirectory) > 0 then Result := 'D'; if (Attr and faArchive) > 0 then Result := Result + 'A'; if (Attr and faReadOnly) > 0 then Result := Result + 'R'; if (Attr and faHidden) > 0 then Result := Result + 'H'; if (Attr and faSysFile) > 0 then Result := Result + 'S'; end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 21:51 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz