FileSize

From SCAR Divi Manual
Jump to: navigation, search

Definition

function FileSize(FileNum: Integer): LongInt;

Availability

SCAR Divi 3.00 > Current

Description

Returns the file size of the file open in a stream associated with the index FileNum in the file stream resource manager. Getting the file size of a file without opening it is possible with GetFileSize.

Example

var
  f: Integer;

begin
  f := Rewritefile(LogsPath + 'Test.txt', False);
  WriteFileString(f, 'Hello World!');
  CloseFile(f);

  f := OpenFile(LogsPath + 'Test.txt', False);
  WriteLn(FileSize(f));
  CloseFile(f);

  DeleteFile(LogsPath + 'Test.txt');
end.

Output:

12

See Also