RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
System.FileSize Function

Returns the number of records in a file.

Pascal
function FileSize(var F): Integer;
C++
int FileSize( F);

System

In Delphi code, call FileSize to determine the size of the file specified by the file variable F. The size is expressed as the number of records in a record file. Thus: 

If the file is declared as a file of byte, then the record size defaults to one byte, and FileSize returns the number of bytes in the file. 

The Reset procedure can set the record size (in bytes) when it opens the file. In this case, FileSize returns the number of records in the file.

Note: If the file is declared as an untyped file and you don't specify a record size when you call Reset, then FileSize assumes a record size of 128. That is, FileSize gives the number of bytes divided by 128.
To use FileSize, the file must be open. If the file is empty, FileSize(F) returns 0. 

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!