|
fileClose |
|
fileClose( const handle) // file handle Closes a file previously opened by fileOpen. All open files are closed automatically at CSL termination. Example:
// show contents of file test.txt
var fh = fileOpen('test.txt', fileOpenRead);
while (!fileEof(fh)) sysLog(fileReadLine(fh));
fileClose(fh);
|
||||||||
| Copyright © IBK Landquart | Last revision: 27.05.2002 | << Back Top Next >> |