CloseFile ( theFile )

File

Arguments theFile - an output File object.
Description The File object must have been created by a call to the CreateOutputFile() method.
Remarks var of = FileSystem.CreateOutputFile("c:/test.txt");
of.println("Created by JavaFoil");
of.print(12);
of.print("\t");
of.println(33.56);
FileSystem.CloseFile( of );