Obtener el tamaño de un fichero
Artículo por Club Developers · 31 diciembre 2005
5057 vistas
Para ello vamos a usar la función GetFileSize
delphi
procedure TForm1.Button1Click(Sender: TObject); function CuantosBytes(Archivo: string): string; var FHandle: integer; begin FHandle := FileOpen(Archivo, 0); try Result := FloatToStr(GetFileSize(FHandle, nil)); finally FileClose(FHandle); end; end; begin Caption := CuantosBytes('c:\windows\notepad.exe'); end;