Delphi-PRAXiS
Seite 4 von 4   « Erste     234   

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Object-Pascal / Delphi-Language (https://www.delphipraxis.net/32-object-pascal-delphi-language/)
-   -   Findfirst,Findnext schulung (https://www.delphipraxis.net/96378-findfirst-findnext-schulung.html)

DeddyH 23. Jul 2007 16:55

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;

SaFu 23. Jul 2007 16:57

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??

DeddyH 23. Jul 2007 16:59

Re: Findfirst,Findnext schulung
 
Z.B. Allerdings würde ich hier eine Listview mit ViewStyle vsReport bevorzugen ;)

SaFu 23. Jul 2007 17:03

Re: Findfirst,Findnext schulung
 
das heisst
wenn ich das so schreibe

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 %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;
bekomme ich als Rec.Attr eine 32 und das ist dann eine archive datei????

DeddyH 23. Jul 2007 17:11

Re: Findfirst,Findnext schulung
 
Richtig, u.zw. nur Archiv ohne weitere Attribute.

DeddyH 23. Jul 2007 17:16

Re: Findfirst,Findnext schulung
 
Du könntest das z.B. so darstellen (nur ein Vorschlag):
Delphi-Quellcode:
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;
Eingabeparameter ist dann Rec.Attr ;)


Alle Zeitangaben in WEZ +1. Es ist jetzt 21:51 Uhr.
Seite 4 von 4   « Erste     234   

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