Kod: Tümünü seç
function boyut(dosya: String): String;
var
srFileSR: TSearchRec;
begin
if not FileExists(dosya) then begin
boyut := inttostr(0);
exit;
end;
findfirst(dosya, FaAnyFile, srFileSR);
boyut := inttostr(srFileSR.Size);
end;
Kod: Tümünü seç
boyut := inttostr(srFileSR.Size);
Kod: Tümünü seç
boyut := inttostr(srFileSR.Time);
Kod: Tümünü seç
1077513030
birde bu kodu ;
Kod: Tümünü seç
boyut := inttostr(srFileSR.Size);
Kod: Tümünü seç
boyut := inttostr(srFileSR.Attr);