CloseFile
PiotrB
CloseFile
Moduł: System
Przyklad:
program Foo;
{$APPTYPE CONSOLE}
var
TF: TextFile;
S: string;
begin
AssignFile(TF, 'C:\Foo.txt');
Reset(TF);
Readln(TF, S);
Writeln(S);
CloseFile(TF);
end.
Zobacz też:
Przyklad:
program Foo;
{$APPTYPE CONSOLE}
var
TF: TextFile;
S: string;
begin
AssignFile(TF, 'C:\Foo.txt');
Reset(TF);
Readln(TF, S);
Writeln(S);
CloseFile(TF);
end.
Zobacz też:
Do tego służy {{Cat:Kategoria}}
Wstawilem opis CloseFile, ktora jest w module System, jednak gdy klikne na modul system nie ma tam odnosnika do tej procedury.