![]() |
Ordnergröße ermitteln
Hi!
Ich möchte eine Ordnergröße ermittel, und diese in einer Variablen speichern (möglichst genau, z.B.: 2.371.182.592 Bytes ) Nun gibt es diese Funktion:
Delphi-Quellcode:
allerdings, kapier ich nicht, wie ich das jetzt in eine var bekomme (wie gesagt, möglichst genau)
function GetFolderSize(Path: string): string;
var f: TSearchRec; tmp: Int64; const sFormat = '%.2n MB'; begin tmp := 0; Path := IncludeTrailingPathDelimiter(Path); if DirectoryExists(path) then begin FindFirst(Path + '*.*', faAnyFile, f); repeat if (f.Attr and FILE_ATTRIBUTE_DIRECTORY = 0) then tmp := tmp + f.Size; until FindNext(f) <> 0; FindClose(f); end; Result := Format(sFormat, [(tmp / 1024) / 1024]); end; Vielen Dank für eure Antworten :thumb: |
Re: Ordnergröße ermitteln
Mit etwas überlegen könnte man vermutlich drauf kommen, daß in tmp die Größe in Byte drinsteht,
also ändert man den Result-Typ erstmal von String nach Int64 und läßt die Umwandlung von Integer (tmp) nach String (Result := Format...) weg und git direkt die Größe zurück. Oder du veränderst einfach den Format-String und änderst passend dazu die dortige Berechnung. |
Re: Ordnergröße ermitteln
Delphi-Quellcode:
das ist doch schon Int64(?)
tmp: Int64;
Und was soll man statt
Delphi-Quellcode:
schreiben?
Result := Format(sFormat, [(tmp / 1024) / 1024]);
Vielleicht kannst du das mal richtig verändert posten. Ich kann mir da irgendwie nichts vorstellen :gruebel: |
Re: Ordnergröße ermitteln
Guck dir mal in einem Tutorial oder Buch an, was Funktionen sind und wie sie funktionieren.
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 01:04 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