CloseFile

From SCAR Divi Manual
Revision as of 12:09, 1 July 2011 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> function CloseFile(FileNum: Integer): Boolean; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== Closes a fi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

function CloseFile(FileNum: Integer): Boolean;

Availability

SCAR Divi 3.00 > Current

Description

Closes a file stream stored in the file stream resource manager associated with the index specified by FileNum. Returns true the the file stream existed and was closed.

Example

var
  f: Integer;
  s: string;

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

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

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

See Also