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
diğer bir konuda verilen link :
PHP'de http://php.net/manual/en/function.stat.php fonksiyonu işinizi görür.
fakat bu o sonucu vermıyor.